Clean checkin

This commit is contained in:
Dan Piponi 2016-12-17 07:37:54 -08:00
parent 16133b9692
commit 36132e0f1a
7 changed files with 12 additions and 0 deletions

2
Setup.hs Normal file
View file

@ -0,0 +1,2 @@
import Distribution.Simple
main = defaultMain

View file

@ -0,0 +1 @@
stack build --executable-profiling --library-profiling --ghc-options="-O5 -fprof-auto -rtsopts"

1
scripts/GO_BACK Normal file
View file

@ -0,0 +1 @@
git stash save --keep-index

1
scripts/RUN Normal file
View file

@ -0,0 +1 @@
stack exec Stellarator-exe -- -f adventure.rom

4
scripts/RUN_TEST Executable file
View file

@ -0,0 +1,4 @@
ca65 -o test.o test.s
ld65 -t none -vm -o test.bin test.o -m test.map
stack build
stack exec emu6502-exe -- -f test.bin

View file

@ -0,0 +1 @@
stack exec Stellarator-exe -- -b f8 -f roms/Centipede.bin +RTS -p

2
test/Spec.hs Normal file
View file

@ -0,0 +1,2 @@
main :: IO ()
main = putStrLn "Test suite not yet implemented"