Add cc65 artifacts to repo for now
Some checks failed
Cargo Build & Test / Rust project - latest (stable) (push) Failing after 38s
Some checks failed
Cargo Build & Test / Rust project - latest (stable) (push) Failing after 38s
This commit is contained in:
13
cc65/asminc/module.mac
Normal file
13
cc65/asminc/module.mac
Normal file
@@ -0,0 +1,13 @@
|
||||
.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
|
||||
Reference in New Issue
Block a user