support for 40/80 column modes
git-svn-id: svn://svn.cc65.org/cc65/trunk@1091 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -37,11 +37,19 @@ _mouse_init:
|
|||||||
sta mouseLeft+1
|
sta mouseLeft+1
|
||||||
lda #199
|
lda #199
|
||||||
sta mouseBottom
|
sta mouseBottom
|
||||||
lda #<319
|
lda graphMode
|
||||||
sta mouseRight
|
bpl _mse_screen320
|
||||||
lda #>319
|
|
||||||
sta mouseRight+1
|
|
||||||
|
|
||||||
|
lda #<639 ; 80 columns on C128
|
||||||
|
ldx #>639
|
||||||
|
bne _mse_storex
|
||||||
|
_mse_screen320:
|
||||||
|
lda #<319 ; 40 columns on C64/C128
|
||||||
|
ldx #>319
|
||||||
|
_mse_storex:
|
||||||
|
sta mouseRight
|
||||||
|
stx mouseRight+1
|
||||||
|
_mse_initend:
|
||||||
lda #0
|
lda #0
|
||||||
; --------------------------------------------------------------------------
|
; --------------------------------------------------------------------------
|
||||||
;
|
;
|
||||||
|
|||||||
Reference in New Issue
Block a user