Skip to content

Commit

Permalink
Refresh
Browse files Browse the repository at this point in the history
  • Loading branch information
dosworld committed Jan 21, 2022
1 parent 0885cc7 commit 26a482b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
10 changes: 8 additions & 2 deletions MAKEFILE
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
all : DOS DPMI

DOS: SYSTEM2.TPU WINCB.TPU STRBIN.TPU ARGS.TPU
DPMI: SYSTEM2.TPP WINCB.TPP STRBIN.TPP ARGS.TPP
DOS: SYSTEM2.TPU WINCB.TPU STRBIN.TPU ARGS.TPU DBU.TPU
DPMI: SYSTEM2.TPP WINCB.TPP STRBIN.TPP ARGS.TPP DBU.TPP

SYSTEM2.TPU: SYSTEM2.PAS SYSEMS.PAS SYSXMS.PAS SYSMEM.PAS
tpc /m SYSTEM2.PAS
Expand All @@ -18,6 +18,12 @@ ARGS.TPU: ARGS.PAS
ARGS.TPP: ARGS.PAS
bpc /m /cp ARGS.PAS

DBU.TPP: DBU.PAS SYSTEM2.TPP
bpc /m /cp DBU.PAS

DBU.TPU: DBU.PAS SYSTEM2.TPU
tpc /m DBU.PAS

STRBIN.TPU: STRBIN.PAS
tpc /m STRBIN.PAS
STRBIN.TPP: STRBIN.PAS
Expand Down
4 changes: 4 additions & 0 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@

Convert Byte/Integers/Longint to/from string in various format.

# Args

Command line parser in modern style.

# License

MIT License, See LICENSE file.

0 comments on commit 26a482b

Please sign in to comment.