mirror of
https://github.com/open-simh/simtools.git
synced 2026-01-13 15:27:18 +00:00
Make the delimiters for .INCLUDE and .LIBRARY accept the same delimiters (= is not disallowed, it just makes the line look like an assignment).
13 lines
293 B
Plaintext
13 lines
293 B
Plaintext
;;;;;
|
|
;
|
|
; Contrary to what the manual says, flags in .PSECT directives
|
|
; are merged. They do not need to be identical every time.
|
|
;
|
|
|
|
.psect $pdata
|
|
.iif P1, .psect $pdata ,ro,d,lcl,rel,con
|
|
.psect $PDATA ,D
|
|
|
|
; and ends up with
|
|
; $PDATA 000000 002 (RO,D,LCL,REL,CON)
|