diff --git a/doc/Analyzing.markdown b/doc/Analyzing.markdown index 1a894f4..8c2bb12 100644 --- a/doc/Analyzing.markdown +++ b/doc/Analyzing.markdown @@ -4,7 +4,7 @@ Anayzling SixtyPical Programs -> Tests for functionality "Analyze SixtyPical program" -> Functionality "Analyze SixtyPical program" is implemented by - -> shell command "bin/sixtypical analyze %(test-file)" + -> shell command "bin/sixtypical analyze %(test-body-file)" Analysis determines what storage locations have been modified by a routine. diff --git a/doc/Checking.markdown b/doc/Checking.markdown index 2127574..a25888e 100644 --- a/doc/Checking.markdown +++ b/doc/Checking.markdown @@ -4,12 +4,12 @@ Checking SixtyPical Programs -> Tests for functionality "Parse SixtyPical program" -> Functionality "Parse SixtyPical program" is implemented by - -> shell command "bin/sixtypical parse %(test-file)" + -> shell command "bin/sixtypical parse %(test-body-file)" -> Tests for functionality "Check SixtyPical program" -> Functionality "Check SixtyPical program" is implemented by - -> shell command "bin/sixtypical check %(test-file)" + -> shell command "bin/sixtypical check %(test-body-file)" Some Basic Syntax ----------------- diff --git a/doc/Emitting.markdown b/doc/Emitting.markdown index 6275270..95824e9 100644 --- a/doc/Emitting.markdown +++ b/doc/Emitting.markdown @@ -4,7 +4,7 @@ Emitting Ophis from SixtyPical Programs -> Tests for functionality "Emit ASM for SixtyPical program" -> Functionality "Emit ASM for SixtyPical program" is implemented by - -> shell command "bin/sixtypical emit %(test-file)" + -> shell command "bin/sixtypical emit %(test-body-file)" Emitting an `if`. diff --git a/loadngo.sh b/loadngo.sh index 23ba246..884d8ca 100755 --- a/loadngo.sh +++ b/loadngo.sh @@ -4,5 +4,5 @@ bin/sixtypical emit $1 > tmp.oph || exit 1 cat lib/basic_header.oph tmp.oph > tmp2.oph || exit 1 ophis tmp2.oph -o tmp.prg || exit 1 -x64 tmp.prg +x64 -joydev2 1 tmp.prg rm -f tmp.oph tmp2.oph tmp.prg