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
|
2002-07-07 10:30:31 +00:00
|
|
|
jsr tgi_geterror ; Get the error code
|
|
|
|
sta _tgi_error ; Save it for reference
|
|
|
|
cmp #TGI_ERR_OK
|
2002-06-21 16:25:56 +00:00
|
|
|
bne @L1 ; Jump if we had an error
|
2002-12-29 20:57:57 +00:00
|
|
|
sta _tgi_gmode ; Reset the graph mode flag (A = 0)
|
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
|
|
|
|