home *** CD-ROM | disk | FTP | other *** search
- include "doorsos.h"
- include "graphlib.h"
- include "userlib.h"
- xdef _ti89
- xdef _ti92plus
- xdef _main
-
- _main:
-
- jsr graphlib::clr_scr2 ;clears the screen
-
- move.w #4,-(a7) ;color #4 : black on whithe
- pea hello(pc) ;adress of the string
- move.w #0,-(a7) ;y coord
- move.w #0,-(a7) ;x coord
- jsr doorsos::DrawStr ;calls the ROM function which draws a string in current font
- lea 10(a7),a7 ;restores the stack
-
- jsr userlib::idle_loop ; waits for a key press
-
- rts ;exits the program
-
- hello dc.b "Hello, World",0
- end
-