Merge remote-tracking branch 'upstream/master'
This commit is contained in:
commit
1e8e998991
7 changed files with 15 additions and 13 deletions
|
@ -55,7 +55,7 @@
|
||||||
;------------------------------------------------------------------------------
|
;------------------------------------------------------------------------------
|
||||||
; The EMD API version, stored in EMD_HDR::VERSION
|
; The EMD API version, stored in EMD_HDR::VERSION
|
||||||
|
|
||||||
EMD_API_VERSION = $01
|
EMD_API_VERSION = $02
|
||||||
|
|
||||||
;------------------------------------------------------------------------------
|
;------------------------------------------------------------------------------
|
||||||
; The asm equivalent to the C em_copy structure
|
; The asm equivalent to the C em_copy structure
|
||||||
|
|
|
@ -56,7 +56,7 @@
|
||||||
;------------------------------------------------------------------------------
|
;------------------------------------------------------------------------------
|
||||||
; The JOY API version, stored in JOY_HDR::VERSION
|
; The JOY API version, stored in JOY_HDR::VERSION
|
||||||
|
|
||||||
JOY_API_VERSION = $02
|
JOY_API_VERSION = $03
|
||||||
|
|
||||||
;------------------------------------------------------------------------------
|
;------------------------------------------------------------------------------
|
||||||
; Variables
|
; Variables
|
||||||
|
|
|
@ -97,7 +97,7 @@
|
||||||
;------------------------------------------------------------------------------
|
;------------------------------------------------------------------------------
|
||||||
; The mouse API version, stored in MOUSE_HDR::VERSION
|
; The mouse API version, stored in MOUSE_HDR::VERSION
|
||||||
|
|
||||||
MOUSE_API_VERSION = $03
|
MOUSE_API_VERSION = $04
|
||||||
|
|
||||||
;------------------------------------------------------------------------------
|
;------------------------------------------------------------------------------
|
||||||
; Bitmapped mouse driver flags, stored in MOUSE_HDR::FLAGS.
|
; Bitmapped mouse driver flags, stored in MOUSE_HDR::FLAGS.
|
||||||
|
|
|
@ -57,7 +57,7 @@
|
||||||
;------------------------------------------------------------------------------
|
;------------------------------------------------------------------------------
|
||||||
; The SER API version, stored SER_HDR::VERSION
|
; The SER API version, stored SER_HDR::VERSION
|
||||||
|
|
||||||
SER_API_VERSION = $01
|
SER_API_VERSION = $02
|
||||||
|
|
||||||
;------------------------------------------------------------------------------
|
;------------------------------------------------------------------------------
|
||||||
; ser_params
|
; ser_params
|
||||||
|
|
|
@ -77,7 +77,7 @@
|
||||||
;------------------------------------------------------------------------------
|
;------------------------------------------------------------------------------
|
||||||
; The TGI API version, stored at TGI_HDR_VERSION
|
; The TGI API version, stored at TGI_HDR_VERSION
|
||||||
|
|
||||||
TGI_API_VERSION = $04
|
TGI_API_VERSION = $05
|
||||||
|
|
||||||
;------------------------------------------------------------------------------
|
;------------------------------------------------------------------------------
|
||||||
; Bitmapped tgi driver flags, stored in TGI_HDR::VARS::FLAGS.
|
; Bitmapped tgi driver flags, stored in TGI_HDR::VARS::FLAGS.
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
;
|
;
|
||||||
; Ullrich von Bassewitz, 02.06.1998
|
; 1998-06-02, Ullrich von Bassewitz
|
||||||
|
; 2013-08-28, Greg King
|
||||||
;
|
;
|
||||||
; char* strlower (char* s);
|
; char* __fastcall__ strlower (char* s);
|
||||||
; char* strlwr (char* s);
|
; char* __fastcall__ strlwr (char* s);
|
||||||
;
|
;
|
||||||
; Non-ANSI
|
; Non-ANSI
|
||||||
;
|
;
|
||||||
|
@ -19,7 +20,7 @@ _strlwr:
|
||||||
sta ptr1 ; Save s (working copy)
|
sta ptr1 ; Save s (working copy)
|
||||||
stx ptr1+1
|
stx ptr1+1
|
||||||
sta ptr2
|
sta ptr2
|
||||||
sta ptr2+1 ; save function result
|
stx ptr2+1 ; save function result
|
||||||
ldy #0
|
ldy #0
|
||||||
|
|
||||||
loop: lda (ptr1),y ; get character
|
loop: lda (ptr1),y ; get character
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
;
|
;
|
||||||
; Ullrich von Bassewitz, 02.06.1998
|
; 1998-06-02, Ullrich von Bassewitz
|
||||||
|
; 2013-08-28, Greg King
|
||||||
;
|
;
|
||||||
; char* strupper (char* s);
|
; char* __fastcall__ strupper (char* s);
|
||||||
; char* strupr (char* s);
|
; char* __fastcall__ strupr (char* s);
|
||||||
;
|
;
|
||||||
; Non-ANSI
|
; Non-ANSI
|
||||||
;
|
;
|
||||||
|
@ -19,7 +20,7 @@ _strupr:
|
||||||
sta ptr1 ; Save s (working copy)
|
sta ptr1 ; Save s (working copy)
|
||||||
stx ptr1+1
|
stx ptr1+1
|
||||||
sta ptr2
|
sta ptr2
|
||||||
sta ptr2+1 ; save function result
|
stx ptr2+1 ; save function result
|
||||||
ldy #0
|
ldy #0
|
||||||
|
|
||||||
loop: lda (ptr1),y ; get character
|
loop: lda (ptr1),y ; get character
|
||||||
|
|
Loading…
Add table
Reference in a new issue