Comparing version 0.1.15 to 0.1.16
15
file.txt
@@ -0,14 +1,5 @@ | ||
lda 5 | ||
include "g.bat" | ||
lda #12 | ||
include binary "g.bat" | ||
basic start | ||
10 PRINT | ||
20 GOTO 10 | ||
basic end | ||
lda #12 | ||
lda #12 | ||
somelabel: | ||
lda #12 | ||
{ | ||
"name": "asmproc", | ||
"version": "0.1.15", | ||
"version": "0.1.16", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "asmproc.js", |
@@ -389,2 +389,12 @@ # asmproc | ||
## DIM | ||
Creates a variable. | ||
``` | ||
dim b as byte ; creates a variable in memory | ||
dim w as word init 3 ; creates a variable in memory and initializes to 3 | ||
dim border as byte at 53280 ; creates a variable at absolute address 53280 | ||
``` | ||
## INLINE BASIC | ||
@@ -457,4 +467,6 @@ | ||
``` | ||
include "file" | ||
include "file" ; includes a source file | ||
include binary "file" ; includes a binary file | ||
``` | ||
Include cannot be part of any conditional block, the only allowed | ||
@@ -461,0 +473,0 @@ conditional syntax is |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
560983
63
15613
518