]> git.sur5r.net Git - cc65/blob - asminc/module.mac
again, some TABs slipped into the code...
[cc65] / asminc / module.mac
1 .ifndef DYN_DRV
2         DYN_DRV = 1
3 .endif
4
5 .macro  module_header   module_label
6         .if DYN_DRV
7                 .segment        "HEADER"
8         .else
9                 .data
10                 .export         module_label
11                 module_label:
12         .endif
13 .endmacro