|
Last change
on this file since f806726 was 3ae31e9, checked in by Thomas Lopatic <thomas@…>, 8 years ago |
|
Imported original source code.
|
-
Property mode
set to
100755
|
|
File size:
773 bytes
|
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | =============================================================================
|
|---|
| 3 | vsinit.c -- intialize VSDD software support variables
|
|---|
| 4 | Version 5 -- 1988-08-15 -- D.N. Lynx Crowe
|
|---|
| 5 | (c) Copyright 1987,1988 -- D.N. Lynx Crowe
|
|---|
| 6 | =============================================================================
|
|---|
| 7 | */
|
|---|
| 8 |
|
|---|
| 9 | #include "hwdefs.h"
|
|---|
| 10 | #include "graphdef.h"
|
|---|
| 11 | #include "vsdd.h"
|
|---|
| 12 | #include "vsddvars.h"
|
|---|
| 13 | #include "memory.h"
|
|---|
| 14 |
|
|---|
| 15 | /*
|
|---|
| 16 | =============================================================================
|
|---|
| 17 | VSinit() -- initialize VSDD software support variables
|
|---|
| 18 | =============================================================================
|
|---|
| 19 | */
|
|---|
| 20 |
|
|---|
| 21 | VSinit()
|
|---|
| 22 | {
|
|---|
| 23 | v_nobj = 0;
|
|---|
| 24 | v_obpri = 0;
|
|---|
| 25 | memsetw(v_obtab, 0, (sizeof v_obtab)/2);
|
|---|
| 26 | v_curob = &v_obtab[0];
|
|---|
| 27 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.