1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +00:00
cc65/libsrc/cbm/curdevice.s

20 lines
347 B
ArmAsm
Raw Permalink Normal View History

;
; Oliver Schmidt, 2012-10-21
;
; unsigned char getcurrentdevice (void);
;
.export _getcurrentdevice
.import curunit
;------------------------------------------------------------------------------
; _getcurrentdevice
.proc _getcurrentdevice
lda curunit
ldx #$00
rts
.endproc