| 
            Last change
 on this file since 109c83b was             109c83b, checked in by Thomas Lopatic <thomas@…>, 8 years ago           | 
        
        
          | 
             
Compiled full ROM in Hatari. 
 
           | 
        
        
          
            
              - 
Property                 mode
 set to                 
100644
               
             
           | 
        
        
          | 
            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.