Skip to content

Commit 46be895

Browse files
committed
V1.30
Nothing special here. Injected PC in messages is now printed in lower case hex.
1 parent d9b65ea commit 46be895

File tree

5 files changed

+1189
-1046
lines changed

5 files changed

+1189
-1046
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1097,7 +1097,7 @@ var2 .ds 1
10971097
alice .ds 1 ; <-- this is the last byte in Page 0. Any thing else will overflow into Page 1
10981098
bob .ds 2
10991099
1100-
.GUARD [* <= $100], "Memory {{%1}}-{{*}} overflow by {{%2}} bytes", var1, [*-$100]
1100+
.GUARD [*<=$100], "Memory {{%1}}-{{*}} overflow by {{%2}} bytes", $80, [*-$100]
11011101
```
11021102

11031103
*.GUARD* takes a list of parameters of the form:
@@ -1147,7 +1147,7 @@ NOTE: It is a advisable to put your conditions and expressions into square brack
11471147
Perhaps most importantly, ATasm works with ASCII files, not ATASCII or Mac/65 tokenized save files. If you must use a tokenized file there are programs available to convert tokenized files to ATASCII (or load the file in Mac/65 and LIST it to disk). Then use a filter program such as 'a2u' to convert the ATASCII to ASCII.
11481148

11491149
* Comment lines only begin with ';' not with '*'
1150-
* Comment blocks are supported via /* ... */
1150+
* Comment blocks are supported via /\* ... \*/
11511151
* The character '|' can be used in place of '!' as a binary OR
11521152
* Macros can have an arbitrary number of parameters and can be nested arbitrarily deep during invocation.
11531153
* .INCLUDEs can be arbitrarily nested.

atasm.exe

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)