fixed incorrect exports
git-svn-id: svn://svn.cc65.org/cc65/trunk@2102 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
@@ -7,14 +7,14 @@
|
|||||||
; unsigned char get_ostype (void);
|
; unsigned char get_ostype (void);
|
||||||
; unsigned char get_tv (void);
|
; unsigned char get_tv (void);
|
||||||
|
|
||||||
.export get_ostype
|
.export _get_ostype
|
||||||
.export get_tv
|
.export _get_tv
|
||||||
.import tmp1
|
.import tmp1
|
||||||
|
|
||||||
.include "../inc/geossym.inc"
|
.include "../inc/geossym.inc"
|
||||||
.include "../inc/geossym2.inc"
|
.include "../inc/geossym2.inc"
|
||||||
|
|
||||||
get_ostype:
|
_get_ostype:
|
||||||
ldx #0
|
ldx #0
|
||||||
lda version
|
lda version
|
||||||
and #%11110000
|
and #%11110000
|
||||||
@@ -27,7 +27,7 @@ geos10:
|
|||||||
lda version
|
lda version
|
||||||
rts
|
rts
|
||||||
|
|
||||||
get_tv:
|
_get_tv:
|
||||||
jsr get_ostype
|
jsr get_ostype
|
||||||
bpl only40 ; C64 with 40 columns only
|
bpl only40 ; C64 with 40 columns only
|
||||||
lda graphMode
|
lda graphMode
|
||||||
|
|||||||
Reference in New Issue
Block a user