From 75a51464ab63191fffe12de50b5719eff1470127 Mon Sep 17 00:00:00 2001 From: Alexander Potashev Date: Wed, 15 Oct 2008 22:11:28 +0400 Subject: [PATCH] added DOS batch files --- .gitignore | 2 ++ tasm-bin/README | 11 +++++++++++ tasm-bin/build.bat | 8 ++++++++ tasm-bin/combuild.bat | 8 ++++++++ tasm-bin/run.bat | 7 +++++++ tasm-bin/td.bat | 6 ++++++ 6 files changed, 42 insertions(+) create mode 100644 tasm-bin/README create mode 100644 tasm-bin/build.bat create mode 100644 tasm-bin/combuild.bat create mode 100644 tasm-bin/run.bat create mode 100644 tasm-bin/td.bat diff --git a/.gitignore b/.gitignore index 5d08603..c487f91 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ howto-push.txt +tasm-bin/MAIN.* +tasm-bin/main.asm diff --git a/tasm-bin/README b/tasm-bin/README new file mode 100644 index 0000000..3f01a86 --- /dev/null +++ b/tasm-bin/README @@ -0,0 +1,11 @@ + +These files should be in this directory (parts of TASM, TD): + tasm.exe + tlink.exe + td.exe + +DOS batch files: + run.bat + td.bat + build.bat + combuild.bat diff --git a/tasm-bin/build.bat b/tasm-bin/build.bat new file mode 100644 index 0000000..bb14aab --- /dev/null +++ b/tasm-bin/build.bat @@ -0,0 +1,8 @@ +:: +:: Copyright (C) 2008 Alexander Potashev +:: + +tasm main +tlink main +@pause + diff --git a/tasm-bin/combuild.bat b/tasm-bin/combuild.bat new file mode 100644 index 0000000..4ee908c --- /dev/null +++ b/tasm-bin/combuild.bat @@ -0,0 +1,8 @@ +:: +:: Copyright (C) 2008 Alexander Potashev +:: + +tasm main +tlink /t main +@pause + diff --git a/tasm-bin/run.bat b/tasm-bin/run.bat new file mode 100644 index 0000000..822c553 --- /dev/null +++ b/tasm-bin/run.bat @@ -0,0 +1,7 @@ +:: +:: Copyright (C) 2008 Alexander Potashev +:: + +main +@pause + diff --git a/tasm-bin/td.bat b/tasm-bin/td.bat new file mode 100644 index 0000000..56e1531 --- /dev/null +++ b/tasm-bin/td.bat @@ -0,0 +1,6 @@ +:: +:: Copyright (C) 2008 Alexander Potashev +:: + +td main + -- 2.11.4.GIT