mirror of
https://github.com/badvision/lawless-legends.git
synced 2024-12-26 19:29:27 +00:00
Merge branch 'master' of https://github.com/badvision/lawless-legends
This commit is contained in:
commit
7961be3272
@ -36,7 +36,7 @@ Load module HELLO.REL
|
|||||||
Hello, world.
|
Hello, world.
|
||||||
```
|
```
|
||||||
|
|
||||||
A couple of things to note: **plasm** only accepts input from stdin and output to stdout. To build **acme** compatible module source, tha '-AM' flags must be passed in. The **acme** assembler needs the --setpc 4096 to assemble the module at the proper address, and the -o option sets the output file. The makefile in the lawless-legends/PLASMA/src directory has automated this process. Enter:
|
A couple of things to note: **plasm** only accepts input from stdin and output to stdout. To build **acme** compatible module source, tha '-AM' flags must be passed in. The **acme** assembler needs the --setpc 4094 to assemble the module at the proper address, and the -o option sets the output file. The makefile in the lawless-legends/PLASMA/src directory has automated this process. Enter:
|
||||||
|
|
||||||
```
|
```
|
||||||
make hello
|
make hello
|
||||||
|
@ -1278,16 +1278,22 @@ while 1
|
|||||||
when toupper(parsecmd(cmdptr))
|
when toupper(parsecmd(cmdptr))
|
||||||
is 'Q'
|
is 'Q'
|
||||||
reboot()
|
reboot()
|
||||||
|
break
|
||||||
is 'C'
|
is 'C'
|
||||||
catalog(cmdptr)
|
catalog(cmdptr)
|
||||||
|
break
|
||||||
is 'P'
|
is 'P'
|
||||||
setpfx(cmdptr)
|
setpfx(cmdptr)
|
||||||
|
break
|
||||||
is 'V'
|
is 'V'
|
||||||
volumes();
|
volumes()
|
||||||
|
break
|
||||||
is '-'
|
is '-'
|
||||||
execsys(cmdptr)
|
execsys(cmdptr)
|
||||||
|
break
|
||||||
is '+'
|
is '+'
|
||||||
execmod(cmdptr)
|
execmod(cmdptr)
|
||||||
|
break
|
||||||
otherwise
|
otherwise
|
||||||
prstr(@huhstr)
|
prstr(@huhstr)
|
||||||
wend
|
wend
|
||||||
|
Loading…
Reference in New Issue
Block a user