Brass Core Plugins

raw

Writes output as a raw binary file.

Remarks

The assembled data are output in order of page followed by address. This output writer plugin is compatible with output modifier plugins that change the size of output data.

Warning

Gaps between non-consecutive addresses are ignored, so if you need to have filler data between addresses use directive that inserts that data rather than just offsetting the current program counter.

Example

Gaps between non-consecutivate addresses are ignored.

$: = $0000
.db 1

$: = $1000
.db 2

; The above outputs a 2-byte file.