Package: src:efp
Followup-For: Bug #966968

asm_to_a65.pl translates efp.asm (DASM format) to efp.a65 (XA65
format). The related lines are:
  # "org FOO" ==> "*=FOO"
      s/\s*org\s+/*=/;
          and
                s/\s*SEG\.U\s+\w+/.zero/;
                        s/\s*SEG\s+/./;
They rewrite
; *********** DATA SEGMENT
    SEG.U   data
                org $0000
as
; *********** DATA SEGMENT
    .zero
            *=$0000
The '.zero' line is rejected by xa65 2.3.11.
There has probably been a change in the syntax described in
http://www.floodgap.com/retrotech/xa/dists/xa-2.3.11.tar.gz
/doc/fileformat.txt

Reply via email to