1
0
mirror of https://github.com/cc65/cc65.git synced 2024-09-28 10:55:43 +00:00

Fix o65 segment id definitions

git-svn-id: svn://svn.cc65.org/cc65/trunk@1945 b7a2c559-68d2-44c3-8de9-860c34a00d81
This commit is contained in:
cuz 2003-02-08 16:50:55 +00:00
parent 5dbc41b0bb
commit d2aba53527

View File

@ -116,12 +116,13 @@ struct o65_header {
O65_ALIGN_1)
/* The four o65 segment types. */
#define O65_SEG_UNDEF 0x00
#define O65_SEG_ABS 0x01
#define O65_SEG_TEXT 0x02
#define O65_SEG_DATA 0x03
#define O65_SEG_BSS 0x04
#define O65_SEG_ZP 0x05
#define O65_SEGID_UNDEF 0x00
#define O65_SEGID_ABS 0x01
#define O65_SEGID_TEXT 0x02
#define O65_SEGID_DATA 0x03
#define O65_SEGID_BSS 0x04
#define O65_SEGID_ZP 0x05
#define O65_SEGID_MASK 0x07
/* Relocation type codes */
#define O65_RTYPE_WORD 0x80