mirror of
https://github.com/cc65/cc65.git
synced 2025-01-02 09:34:22 +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:
parent
5dbc41b0bb
commit
d2aba53527
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user