2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; Maciej 'YTM/Alliance' Witkowiak
|
|
|
|
;
|
|
|
|
; 21.12.99
|
|
|
|
|
|
|
|
; void PromptOn (struct pixel *);
|
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
.importzp ptr4
|
|
|
|
.export _PromptOn
|
2000-05-28 13:40:48 +00:00
|
|
|
|
2013-05-09 13:56:54 +02:00
|
|
|
.include "jumptab.inc"
|
|
|
|
.include "geossym.inc"
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
_PromptOn:
|
2013-05-09 13:56:54 +02:00
|
|
|
sta ptr4
|
|
|
|
stx ptr4+1
|
|
|
|
ldy #0
|
2012-02-08 16:13:01 +00:00
|
|
|
promptLp:
|
2013-05-09 13:56:54 +02:00
|
|
|
lda (ptr4),y
|
|
|
|
sta stringX,y
|
|
|
|
iny
|
|
|
|
cpy #3
|
|
|
|
bne promptLp
|
|
|
|
jmp PromptOn
|