From 19a5357d4176613ec9c41e44dc871cd6b19af707 Mon Sep 17 00:00:00 2001 From: Stephen Toth Date: Mon, 9 Jul 2018 14:17:46 -0400 Subject: [PATCH] Added build.bat and instructions for building on Windows --- .gitignore | 1 + README.md | 11 +++++++++-- build.bat | 1 + 3 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 build.bat diff --git a/.gitignore b/.gitignore index 1377554..da7ba23 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ *.swp +*.exe \ No newline at end of file diff --git a/README.md b/README.md index e0dc041..ce42f43 100644 --- a/README.md +++ b/README.md @@ -19,15 +19,22 @@ For TIOS 5.3+ Press Prgm and select FSHA. you should now have the following: `PrgmFSHA` Press Enter ## Building From Source +The source code for this project is available at +Download it from the link and then follow the instructions below for different operating systems. + * Linux 1. Clone, make, and install spasm-ng 2. Run the `build` script ``` ./build ``` + +* Windows + 1. Download and build spasm-ng + 2. Run `build.bat` ## Contributing -Please see `CONTRIBUTING.md` +Please see `CONTRIBUTING.md` in the repository. ## Bug Reports If you find an Issue or Bug, please let me know by making an Issue on Gitlab: @@ -36,4 +43,4 @@ Please include: 2. What you were doing when the issue occurred. 3. Possible cause/fixes? (optional) -Thank you! +Thank you! \ No newline at end of file diff --git a/build.bat b/build.bat new file mode 100644 index 0000000..a2ec234 --- /dev/null +++ b/build.bat @@ -0,0 +1 @@ +SPASM.exe -ETA "FSHa.asm" "bin\FSHa.8xp" \ No newline at end of file