mirror of
https://github.com/irmen/prog8.git
synced 2026-03-11 05:41:42 +00:00
cx16: sysinit now explicitly makes vera border color also black (0)
This commit is contained in:
@@ -2329,6 +2329,7 @@ asmsub init_system() {
|
||||
sta $00 ; select ram bank
|
||||
lda #0
|
||||
sta $01 ; set ROM bank to kernal bank to speed up kernal calls
|
||||
sta cx16.VERA_DC_BORDER
|
||||
tax
|
||||
tay
|
||||
cli
|
||||
|
||||
@@ -250,7 +250,7 @@ callfar (bank, address, argumentword) -> uword
|
||||
The argumentword will be loaded into the A+Y registers before calling the routine.
|
||||
The uword value that the routine returns in the A+Y registers, will be returned.
|
||||
NOTE: this routine is very inefficient, so don't use it to call often. Set the bank yourself
|
||||
or even write a custom tailored trampoline routine if you need to. Or use ``call`` if you can.
|
||||
or even write a custom tailored trampoline routine that you reuse. Or use ``call`` if you can.
|
||||
|
||||
callfar2 (bank, address, argA, argX, argY, argCarry) -> uword
|
||||
Identical to ``callfar``, except here you can give arguments not only for AY,
|
||||
|
||||
Reference in New Issue
Block a user