home *** CD-ROM | disk | FTP | other *** search
- include "doorsos.h"
- include "graphlib.h"
- include "userlib.h"
- xdef _main
- xdef _comment
- xdef _ti89
- xdef _ti92plus
-
- _main:
- jsr graphlib::clr_scr2 ;Clears the screen but keeps the status line drawed
- lea big(pc),a0 ;loads the title of the big box
- jsr graphlib::bigbox ;draws the big box
-
- lea small(pc),a0 ;loads the title of the small box
- jsr graphlib::smallbox ;draws the small box
-
- jsr userlib::idle_loop ;waits for a key input
- rts
-
- big dc.b "Big box",0
- small dc.b "Small box",0
-
- _comment dc.b "Graphlib test",0
-
-
- end
-