File: module.mac

package info (click to toggle)
cc65 2.17-1
  • links: PTS
  • area: main
  • in suites: buster
  • size: 19,032 kB
  • sloc: ansic: 111,990; asm: 59,701; pascal: 3,584; makefile: 953; perl: 607
file content (13 lines) | stat: -rw-r--r-- 278 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
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