1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-05 21:29:03 +00:00
cc65/libsrc/geos-common/mousesprite/promptoff.s
ol.sc 3aabd85bf4 Apply "improved" cursor-off handling for native GEOS API too.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5876 b7a2c559-68d2-44c3-8de9-860c34a00d81
2012-10-25 20:02:01 +00:00

22 lines
268 B
ArmAsm

;
; Maciej 'YTM/Alliance' Witkowiak
;
; 21.12.99
; void PromptOff (void);
.export _PromptOff
.include "jumptab.inc"
.include "geossym.inc"
_PromptOff:
; from 'The Hitchhiker's Guide To GEOS'
php
sei
jsr PromptOff
lda #0
sta alphaFlag
plp
rts