Files
nes-emu/cc65/asminc/module.mac
Matthew Pomes 5c25059ae3
Some checks failed
Cargo Build & Test / Rust project - latest (stable) (push) Failing after 38s
Add cc65 artifacts to repo for now
2026-04-12 14:39:50 -05:00

14 lines
278 B
Plaintext

.ifndef DYN_DRV
DYN_DRV = 1
.endif
.macro module_header module_label
.if DYN_DRV
.segment "HEADER"
.else
.data
.export module_label
module_label:
.endif
.endmacro