2002-06-21 13:28:51 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 21.06.2002
|
|
|
|
;
|
|
|
|
; void __fastcall__ tgi_done (void);
|
|
|
|
; /* End graphics mode, switch back to text mode. Will NOT unload the driver! */
|
|
|
|
|
|
|
|
.include "tgi-kernel.inc"
|
2002-07-07 10:30:31 +00:00
|
|
|
.include "tgi-error.inc"
|
2002-06-21 13:28:51 +00:00
|
|
|
|
2003-02-11 12:37:46 +00:00
|
|
|
.proc _tgi_done
|
2002-06-21 13:28:51 +00:00
|
|
|
|
2002-12-29 20:57:57 +00:00
|
|
|
lda _tgi_gmode ; Is a graphics mode active?
|
2002-06-21 13:28:51 +00:00
|
|
|
beq @L1 ; Jump if not
|
|
|
|
jsr tgi_done ; Call the driver routine
|
2003-10-23 09:38:51 +00:00
|
|
|
lda #$00
|
|
|
|
sta _tgi_gmode ; Reset the graph mode flag
|
2002-06-21 13:28:51 +00:00
|
|
|
@L1: rts
|
|
|
|
|
2003-02-11 12:37:46 +00:00
|
|
|
.endproc
|
2002-06-21 13:28:51 +00:00
|
|
|
|