Auto setup module flow and packages as targets.
All checks were successful
Run test asserts / Test-Asserts (push) Successful in -13s
All checks were successful
Run test asserts / Test-Asserts (push) Successful in -13s
This commit is contained in:
parent
f0cccf2bb3
commit
c13a26d6b5
28 changed files with 420 additions and 259 deletions
22
src/tools/gluedos1/set.asm
Normal file
22
src/tools/gluedos1/set.asm
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
|
||||
.area _CODE
|
||||
JP MAIN
|
||||
.db 0x0D
|
||||
.db 0x0D,0x0A
|
||||
.str "TODO: MSX-DOS1 set command."
|
||||
.db 0x0D,0x0A
|
||||
.db 0x1A
|
||||
|
||||
; TODO: code
|
||||
;
|
||||
; SUPPORT: set FOO=BAR
|
||||
; SUPPORT: set BAR=bar %FOO% bar
|
||||
; - open command.env (auto create)
|
||||
; - read command.env
|
||||
; - replace env variable of argument
|
||||
; - append or replace parsed argument line to env file
|
||||
; - exit
|
||||
MAIN:
|
||||
RET
|
||||
|
||||
.area _DATA
|
||||
Loading…
Add table
Add a link
Reference in a new issue