1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-28 06:29:30 +00:00
cc65/libsrc/geos/conio/screensize.s

33 lines
422 B
ArmAsm
Raw Normal View History

;
; Maciej 'YTM/Elysium' Witkowiak
;
; 27.10.2001
; 06.03.2002
; void screensize (unsigned char* x, unsigned char* y);
;
.export _screensize
.import popax
.importzp ptr1, ptr2
.import xsize, ysize
.include "../inc/geossym.inc"
_screensize:
sta ptr1 ; Store the y pointer
stx ptr1+1
jsr popax ; get the x pointer
sta ptr2
stx ptr2+1
lda xsize
sta (ptr2),y
lda ysize
sta (ptr1),y
rts