mirror of
https://github.com/uffejakobsen/acme.git
synced 2024-11-21 11:32:23 +00:00
d70988c09d
git-svn-id: https://svn.code.sf.net/p/acme-crossass/code-0/trunk@347 4df02467-bbd4-4a76-a152-e7ce94205b78
25 lines
474 B
Plaintext
25 lines
474 B
Plaintext
; "!pseudopc"/"!realpc" throw error in 0.94.8:
|
|
*=$2000
|
|
!nowarn !pseudopc $2345
|
|
!wo *
|
|
!nowarn !realpc
|
|
; "!cbm" throws error in 0.94.8:
|
|
!nowarn !cbm
|
|
; "!subzone" throws error in 0.94.8:
|
|
!nowarn !subzone dummy
|
|
; "*=" terminates "!pseudopc", works in 0.94.8:
|
|
!pseudopc $1010 {
|
|
!if * != $1010 {
|
|
!error "pc is not $1010"
|
|
}
|
|
!nowarn *=$2020
|
|
!if * != $2020 {
|
|
!error "pc is not $2020"
|
|
}
|
|
}
|
|
!if * != $2020 {
|
|
!error "pc is not $2020"
|
|
}
|
|
|
|
!src "dialect09408.a"
|