home *** CD-ROM | disk | FTP | other *** search
/ Oakland CPM Archive / oakcpm.iso / sigm / vol163 / test.bas < prev    next >
Encoding:
BASIC Source File  |  1984-04-29  |  334 b   |  20 lines

  1. REM This is a program to test the linkage between CBAS2 and Assembly
  2. REM language programs.
  3. REM
  4. REM    T E S T . B A S
  5. REM
  6.  
  7.     SAVEMEM 01006H, "CBAS.TST"
  8.  
  9. 1000    PRINT "This is the Basic portion of the CBASIC assembly language"
  10.     PRINT " linkage."
  11.     PRINT
  12.  
  13.     CALL 09200H
  14.  
  15.     PRINT
  16.     PRINT "This is a return to the CBASIC interpreter"
  17.     PRINT
  18.  
  19.     END
  20.