mirror of
https://github.com/cc65/cc65.git
synced 2024-11-02 18:06:48 +00:00
14 lines
278 B
Plaintext
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
|