Skip to main content
Version: v0.6.1

rgbds(5) — object file format documentation

This is the description of the object files used by rgbasm(1) and rgblink(1). RGBDS is still in active development, and some new features require adding more information to the object file, or modifying some fields, both of which break compatibility with older versions.

The following types are used:

LONG is a 32-bit integer stored in little-endian format. BYTE is an 8-bit integer. STRING is a 0-terminated string of BYTE. Brackets after a type (e.g. LONG[n]) indicate n consecutive elements (here, LONGs). All items are contiguous, with no padding anywhere—this also means that they may not be aligned in the file!

REPT n indicates that the fields between the REPT and corresponding ENDR are repeated n times.

All IDs refer to objects within the file; for example, symbol ID $0001 refers to the second symbol defined in object file's Symbols array. The only exception is the Source file info nodes, whose IDs are backwards, i.e. source node ID $0000 refers to the node in the array, not the first one. References to other object files are made by imports (symbols), by name (sections), etc.—but never by ID.

Magic[4]
"RGB9"
RevisionNumber
The format's revision number this file uses. (This is always in the same place in all revisions.)
NumberOfSymbols
How many symbols are defined in this object file.
NumberOfSections
How many sections are defined in this object file.

NumberOfNodes
The number of source context nodes contained in this file.
NumberOfNodes
ParentID
ID of the parent node, -1 meaning that this is the root node.

: the nodes are actually written in order, meaning the node with ID 0 is the last one in the list!

ParentLineNo
Line at which the parent node's context was exited; meaningless for the root node.
Type
0 REPT node
1 File node
2 Macro node
Type ≠ 0
If the node is not a REPT node...

Name
The node's name: either a file name, or the macro's name prefixes by its definition's file name (e.g. ‘src/includes/defines.asm::error’).
If the node is a REPT, it also contains the iteration counter of all parent REPTs.

Depth
 
Iter[Depth]
The number of REPT iterations, by increasing depth.
 
 

NumberOfSymbols
Name
This symbol's name. Local symbols are stored as their full name (‘Scope.symbol’).
Type
0 symbol only used in this file.
1 of an exported symbol (by name) from another object file.
2 symbol visible from other object files.
Type ≠ 1
If the symbol is defined in this object file...

NodeID
Context in which the symbol was defined.
LineNo
Line number in the context at which the symbol was defined.
SectionID
The ID of the section in which the symbol is defined. If the symbol doesn't belong to any specific section (i.e. it's a constant), this field contains -1.
Value
The symbol's value. If the symbol belongs to a section, this is the offset within that symbol's section.
 
 

NumberOfSections
Name
The section's name.
Size
The section's size, in bytes.
Type
Bits 0–2 indicate the section's type:
0 WRAM0
1 VRAM
2 ROMX
3 ROM0
4 HRAM
5 WRAMX
6 SRAM
7 OAM

Bit 7 being set means that the section is a "union" (see “Unionized sections” in rgbasm(5)). Bit 6 being set means that the section is a "fragment" (see “Section fragments” in rgbasm(5)). These two bits are mutually exclusive.

Address
Address this section must be placed at. This must either be valid for the section's Type (as affected by flags like -t or -d in rgblink(1)), or -1 to indicate that the linker should automatically decide (the section is “floating”).
Bank
ID of the bank this section must be placed in. This must either be valid for the section's Type (with the same caveats as for the Address), or -1 to indicate that the linker should automatically decide.
Alignment
How many bits of the section's address should be equal to AlignOfs, starting from the least-significant bit.
AlignOfs
Alignment offset. Must be strictly less than ‘1 << Alignment’.
Type = 2 || Type = 3
If the section has ROM type, it contains data.

Data[Size]
The section's raw data. Bytes that will be patched over must be present, even though their contents will be overwritten.
NumberOfPatches
How many patches must be applied to this section's Data.
NumberOfPatches
NodeID
Context in which the patch was defined.
LineNo
Line number in the context at which the patch was defined.
Offset
Offset within the section's Data at which the patch should be applied. Must not be greater than the section's Size minus the patch's size (see Type below).
PCSectionID
ID of the section in which PC is located. (This is usually the same section within which the patch is applied, except for e.g. ‘LOAD’ blocks, see “RAM code” in rgbasm(5).)
PCOffset
Offset of the PC symbol within the section designated by PCSectionID. It is expected that PC points to the instruction's first byte for instruction operands (i.e. ‘jp @’ must be an infinite loop), and to the patch's first byte otherwise (‘db’, ‘dw’, ‘dl’).
Type
0 Single-byte patch
1 Little-endian two-byte patch
2 Little-endian four-byte patch
3 Single-byte ‘jr’ patch; the patch's value will be subtracted to PC + 2 (i.e. ‘jr @’ must be the infinite loop ‘18 FE’).
RPNSize
Size of the RPNExpr below.
RPNExpr[RPNSize]
The patch's value, encoded as a RPN expression (see RPN EXPRESSIONS).
 
 

NumberOfAssertions
How many assertions this object file contains.
NumberOfAssertions
Assertions are essentially patches with a message.

NodeID
Context in which the assertions was defined.
LineNo
Line number in the context at which the assertion was defined.
Offset
Unused leftover from the patch structure.
PCSectionID
ID of the section in which PC is located.
PCOffset
Offset of the PC symbol within the section designated by PCSectionID.
Type
Describes what should happen if the expression evaluates to a non-zero value.
0 Print a warning message, and continue linking normally.
1 Print an error message, so linking will fail, but allow other assertions to be evaluated.
2 Print a fatal error message, and abort immediately.
RPNSize
Size of the RPNExpr below.
RPNExpr[RPNSize]
The patch's value, encoded as a RPN expression (see RPN EXPRESSIONS).
Message
The message displayed if the expression evaluates to a non-zero value. If empty, a generic message is displayed instead.
 

Expressions in the object file are stored as RPN, or “Reverse Polish Notation”, which is a notation that allows computing arbitrary expressions with just a simple stack. For example, the expression ‘2 5 -’ will first push the value “2” to the stack, then “5”. The ‘-’ operator pops two arguments from the stack, subtracts them, and then pushes back the result (“3”) on the stack. A well-formed RPN expression never tries to pop from an empty stack, and leaves exactly one value in it at the end.

RGBDS encodes RPN expressions as an array of BYTEs. The first byte encodes either an operator, or a literal, which consumes more BYTEs after it.

Addition operator (‘+’)
Subtraction operator (‘-’)
Multiplication operator (‘*’)
Division operator (‘/’)
Modulo operator (‘%’)
Negation (unary ‘-’)
Exponent operator (‘**’)
Bitwise OR operator (‘|’)
Bitwise AND operator (‘&’)
Bitwise XOR operator (‘^’)
Bitwise complement operator (unary ‘~’)
Logical AND operator (‘&&’)
Logical OR operator (‘||’)
Logical complement operator (unary ‘!’)
Equality operator (‘==’)
Non-equality operator (‘!=’)
Greater-than operator (‘>’)
Less-than operator (‘<’)
Greater-than-or-equal operator (‘>=’)
Less-than-or-equal operator (‘<=’)
Left shift operator (‘<<’)
Arithmetic/signed right shift operator (‘>>’)
Logical/unsigned right shift operator (‘>>>’)
(symbol), followed by the symbol's LONG ID.
BANK(section), followed by the section's STRING name.
PC's BANK() (i.e. ‘BANK(@)’).
(section), followed by the section's STRING name.
(section), followed by the section's STRING name.
ldh’ check. Checks if the value is a valid ‘ldh’ operand (see “Load Instructions” in gbz80(7)), i.e. that it is between either $00 and $FF, or $FF00 and $FFFF, both inclusive. The value is then ANDed with $00FF (‘& $FF’).
rst’ check. Checks if the value is a valid ‘rst’ (see “RST vec” in gbz80(7)) vector, that is one of $00, $08, $10, $18, $20, $28, $30, or $38. The value is then ORed with $C7 (‘| $C7’).
Integer literal. Followed by the LONG integer.
A symbol's value. Followed by the symbol's LONG ID.

rgbasm(1), rgblink(1), rgbds(7), gbz80(7)

rgbds was originally written by Carsten Sørensen as part of the ASMotor package, and was later packaged in RGBDS by Justin Lloyd. It is now maintained by a number of contributors at https://github.com/gbdev/rgbds.