1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 23:29:39 +00:00

Remove export

This commit is contained in:
Karri Kaksonen 2022-04-04 15:17:26 +03:00
parent 37456219eb
commit c7cb201070

View File

@ -13,7 +13,6 @@
.export _screen
.export _zones
.export _dll
.export _initconio
.bss
_screen:
@ -184,8 +183,11 @@ CTRL_CHAR2B .set $10
CTRL_DMAON .set $40
CTRL_CKOFF .set 0
_initconio:
initconio:
;-----------------------------------------------------------------------------
; Initialize the conio display lists and zones
;
.proc initconio
jsr _get_tv
bne pal
lda #<Topscanlines
@ -217,3 +219,5 @@ vblankoff:
sta P0C3
rts
.endproc