comparison defs.s @ 1:704b2c9dc19e default tip

Remove extraneous unused and incorrect definition
author William Astle <lost@l-w.ca>
date Wed, 02 Jan 2019 10:11:19 -0700
parents 605ff82c4618
children
comparison
equal deleted inserted replaced
0:605ff82c4618 1:704b2c9dc19e
32 RANFIL equ 0x40 ; random file type 32 RANFIL equ 0x40 ; random file type
33 ROWMAX equ 24 ; the number of rows on the hi-res text screen 33 ROWMAX equ 24 ; the number of rows on the hi-res text screen
34 HRESSCRN equ 0x2000 ; where the hi-res text screen starts in logical memory 34 HRESSCRN equ 0x2000 ; where the hi-res text screen starts in logical memory
35 HRESBUFF equ 0xc000 ; where the HGET/HPUT buffers are in logical memory 35 HRESBUFF equ 0xc000 ; where the HGET/HPUT buffers are in logical memory
36 TMPSTACK equ 0xdfff ; temporary stack location when in secondary memory map 36 TMPSTACK equ 0xdfff ; temporary stack location when in secondary memory map
37 CURCHAR equ SPACE ; hi-res text screen cursor character
38 ; HGET/HPUT buffer header structure 37 ; HGET/HPUT buffer header structure
39 HB.ADDR equ 0 ; address of next buffer (2 bytes) 38 HB.ADDR equ 0 ; address of next buffer (2 bytes)
40 HB.NUM equ 2 ; number of this buffer (1 byte) 39 HB.NUM equ 2 ; number of this buffer (1 byte)
41 HB.SIZE equ 3 ; number of bytes in this buffer (2 bytes) 40 HB.SIZE equ 3 ; number of bytes in this buffer (2 bytes)
42 HB.LEN equ 5 ; number of bytes in a buffer header 41 HB.LEN equ 5 ; number of bytes in a buffer header