2000-05-28 13:40:48 +00:00
|
|
|
;
|
2003-05-01 16:39:09 +00:00
|
|
|
; Maciej 'YTM/Elysium' Witkowiak
|
2000-05-28 13:40:48 +00:00
|
|
|
;
|
|
|
|
; 25.12.99
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.export DB_get2lines
|
|
|
|
.importzp ptr3,ptr4
|
|
|
|
.import popax
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
DB_get2lines:
|
2013-05-09 11:56:54 +00:00
|
|
|
sta ptr4 ; fetch line 2
|
|
|
|
stx ptr4+1
|
|
|
|
jsr popax
|
|
|
|
sta ptr3 ; fetch line 1
|
|
|
|
stx ptr3+1
|
|
|
|
ldx #ptr3
|
|
|
|
jsr checknull
|
|
|
|
ldx #ptr4
|
|
|
|
jmp checknull
|
2003-05-01 16:39:09 +00:00
|
|
|
|
|
|
|
checknull:
|
2013-05-09 11:56:54 +00:00
|
|
|
lda $0,x
|
|
|
|
ora $1,x
|
|
|
|
bne cn_end
|
|
|
|
lda #<nullstring
|
|
|
|
sta $0,x
|
|
|
|
lda #>nullstring
|
|
|
|
sta $1,x
|
|
|
|
cn_end: rts
|
2003-05-01 16:39:09 +00:00
|
|
|
|
|
|
|
.rodata
|
|
|
|
|
|
|
|
nullstring:
|
2013-05-09 11:56:54 +00:00
|
|
|
.byte 0
|