mirror of
https://github.com/cc65/cc65.git
synced 2025-01-18 11:29:45 +00:00
According to Greg King, Vorpal files are regular files.
git-svn-id: svn://svn.cc65.org/cc65/trunk@5755 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
parent
e1227aa402
commit
b7325f7abe
@ -12,13 +12,13 @@
|
|||||||
CBM_T_PRG = $11 ; Program file
|
CBM_T_PRG = $11 ; Program file
|
||||||
CBM_T_USR = $12 ; User file
|
CBM_T_USR = $12 ; User file
|
||||||
CBM_T_REL = $13 ; Relative file
|
CBM_T_REL = $13 ; Relative file
|
||||||
|
CBM_T_VRP = $14 ; Vorpal fast-loadable format
|
||||||
CBM_T_DEL = $00 ; Deleted file
|
CBM_T_DEL = $00 ; Deleted file
|
||||||
CBM_T_CBM = $01 ; 1581 sub-partition
|
CBM_T_CBM = $01 ; 1581 sub-partition
|
||||||
CBM_T_DIR = $02 ; IDE64 and CMD sub-directory
|
CBM_T_DIR = $02 ; IDE64 and CMD sub-directory
|
||||||
CBM_T_LNK = $03 ; IDE64 soft-link
|
CBM_T_LNK = $03 ; IDE64 soft-link
|
||||||
CBM_T_VRP = $04 ; Vorpal fast-loadable format
|
CBM_T_OTHER = $04 ; File-type not recognized
|
||||||
CBM_T_OTHER = $05 ; File-type not recognized
|
CBM_T_HEADER = $05 ; Disk header / title
|
||||||
CBM_T_HEADER = $06 ; Disk header / title
|
|
||||||
.endenum
|
.endenum
|
||||||
|
|
||||||
|
|
||||||
|
@ -60,13 +60,13 @@
|
|||||||
#define _CBM_T_PRG 0x11U
|
#define _CBM_T_PRG 0x11U
|
||||||
#define _CBM_T_USR 0x12U
|
#define _CBM_T_USR 0x12U
|
||||||
#define _CBM_T_REL 0x13U
|
#define _CBM_T_REL 0x13U
|
||||||
|
#define _CBM_T_VRP 0x14U /* Vorpal fast-loadable format */
|
||||||
#define _CBM_T_DEL 0x00U
|
#define _CBM_T_DEL 0x00U
|
||||||
#define _CBM_T_CBM 0x01U /* 1581 sub-partition */
|
#define _CBM_T_CBM 0x01U /* 1581 sub-partition */
|
||||||
#define _CBM_T_DIR 0x02U /* IDE64 and CMD sub-directory */
|
#define _CBM_T_DIR 0x02U /* IDE64 and CMD sub-directory */
|
||||||
#define _CBM_T_LNK 0x03U /* IDE64 soft-link */
|
#define _CBM_T_LNK 0x03U /* IDE64 soft-link */
|
||||||
#define _CBM_T_VRP 0x04U /* Vorpal fast-loadable format */
|
#define _CBM_T_OTHER 0x04U /* File-type not recognized */
|
||||||
#define _CBM_T_OTHER 0x05U /* File-type not recognized */
|
#define _CBM_T_HEADER 0x05U /* Disk header / title */
|
||||||
#define _CBM_T_HEADER 0x06U /* Disk header / title */
|
|
||||||
|
|
||||||
#if __CC65_STD__ == __CC65_STD_CC65__
|
#if __CC65_STD__ == __CC65_STD_CC65__
|
||||||
/* Allow for names without leading underscores */
|
/* Allow for names without leading underscores */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user