eris2010

Documentation: http://frombelow.net/projects/eris2010/
Clone: git clone https://git.frombelow.net/eris2010.git
Log | Files | Refs | Submodules | README | LICENSE

os.inc (432B)


      1 /*
      2  * Copyright 2021 Gerd Beuster (gerd@frombelow.net). This is free
      3  * software under the GNU GPL v3 license or any later version. See
      4  * COPYING in the root directory for details.
      5  */
      6  
      7 	.setcpu "65C02"
      8 
      9 .IFDEF SYMON
     10 	.include "../../../../eris2010/roms/os/io_symon.l"
     11 	.include "../../../../eris2010/roms/os/term_symon.l"
     12 .ELSE
     13 	.include "../../../../eris2010/roms/os/io.l"
     14 	.include "../../../../eris2010/roms/os/term.l"
     15 .ENDIF