;---------------------------------------------------- ;DEMO_IO will demonstrate access to the I/O streams. ;Program calls monitor routines to xfer data. ;Call address needs to be adjusted to the monitor ;load address ;---------------------------------------------------- LOAD demo24io ;load sample code for I/O test INPUT off ;switch off old input streams OUTPUT off ;switch off old output streams INPUT data_1 ;this will open an input file OUTPUT term ;this will redirect data to the window OUTPUT term -a ;this will send ASCII data to the window BREAK STOP ;set a breakpoint after finished test GO ; ... and go