1
0
mirror of https://github.com/cc65/cc65.git synced 2024-06-07 07:29:33 +00:00

Fixed a typo

git-svn-id: svn://svn.cc65.org/cc65/trunk@2776 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2003-12-16 22:23:45 +00:00
parent cb9a4e91e1
commit 30577253b1

View File

@ -35,7 +35,7 @@
;------------------------------------------------------------------------------
; The driver header
.struct EMD_HDR
ID .byte 3 ; Contains 0x65, 0x6d, 0x64 ("emd")
VERSION .byte 1 ; Interface version
@ -52,7 +52,7 @@
.endstruct
;------------------------------------------------------------------------------
; The AMD API version, stored in EMD_HDR::VERSION
; The EMD API version, stored in EMD_HDR::VERSION
EMD_API_VERSION = $00
@ -64,7 +64,7 @@ EMD_API_VERSION = $00
OFFS .byte ; Offset into page
PAGE .word ; Starting page to copy from or to
COUNT .word ; Number of bytes to copy
UNUSED .byte ; Make the size 8 bytes
UNUSED .byte ; Make the size 8 bytes
.endstruct
;------------------------------------------------------------------------------