1
0
mirror of https://github.com/dschmenk/PLASMA.git synced 2025-04-06 10:37:32 +00:00

Add CHAR and VAR as aliases for BYTE and WORD

This commit is contained in:
David Schmenk 2018-01-09 20:02:19 -08:00
parent 2251346d97
commit 7d41f903a6
2 changed files with 4 additions and 5 deletions

View File

@ -165,7 +165,7 @@ $(MON): samplesrc/mon.pla $(PLVM02) $(PLASM)
acme --setpc 4094 -o $(MON) samplesrc/mon.a
$(ROD): samplesrc/rod.pla $(PLVM02) $(PLASM)
./$(PLASM) -AMOW < samplesrc/rod.pla > samplesrc/rod.a
./$(PLASM) -AMO < samplesrc/rod.pla > samplesrc/rod.a
acme --setpc 4094 -o $(ROD) samplesrc/rod.a
$(SIEVE): samplesrc/sieve.pla $(PLVM02) $(PLASM)

View File

@ -3,8 +3,8 @@ include "inc/conio.plh"
//
// Rod's Colors
//
def rod#0
byte i, j, k, w, fmi, fmk, color
def rod
var i, j, k, w, fmi, fmk, color
while TRUE
for w = 3 to 50
@ -24,8 +24,7 @@ def rod#0
conio:grplot(i, fmk)
conio:grplot(fmk, i)
if conio:keypressed()
getc
return
return getc
fin
next
next