-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Michał Taszycki
committed
Oct 14, 2015
1 parent
81fb786
commit 3506169
Showing
9 changed files
with
151 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2015 Michał Taszycki | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
# 64spec | ||
|
||
6502/Commodore64 Testing Framework for KickAssembler | ||
|
||
## Installation | ||
|
||
### Recommended way | ||
|
||
1. Create a dir for libraries that your KickAssembler projects use. | ||
2. Get the current version of the 64spec.asm file and put it in this dir along with other libraries. | ||
3. Import it in your spec files as <code>.import source "64spec.asm"</code> | ||
4. Make sure to pass option <code>-libdir <path-to-your-libraries-dir></code> when compiling with KickAssembler. | ||
|
||
### If you just want to try it out | ||
|
||
1. Get the current version of the 64spec.asm file and put it in the same directory as your spec files. | ||
2. Import it in your spec files as <code>.import source "64spec.asm"</code> | ||
|
||
## Quick Start | ||
|
||
#### 1. Create file example_spec.asm | ||
|
||
``` asm | ||
.import source "64spec.asm" | ||
sfspec: :init_spec() | ||
// TODO: Add assertions here | ||
:finish_spec() | ||
``` | ||
|
||
![Empty Spec](docs/qs01-empty.png?raw=true "Empty Spec") | ||
|
||
#### 2. Add first failing assertion. | ||
|
||
``` asm | ||
.import source "64spec.asm" | ||
sfspec: :init_spec() | ||
:assert_a_equal #42 | ||
:finish_spec() | ||
``` | ||
|
||
![Empty Spec](docs/qs02-fail.png?raw=true "Empty Spec") | ||
|
||
3. Make it pass | ||
|
||
``` asm | ||
.import source "64spec.asm" | ||
sfspec: :init_spec() | ||
lda #42 | ||
:assert_a_equal #42 | ||
:finish_spec() | ||
``` | ||
|
||
![Empty Spec](docs/qs03-pass.png?raw=true "Empty Spec") | ||
|
||
## License | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2015 Michał Taszycki | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
.import source "64spec.asm" | ||
|
||
sfspec: :init_spec() | ||
// TODO: Add assertions here | ||
|
||
:finish_spec() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
.import source "64spec.asm" | ||
|
||
sfspec: :init_spec() | ||
:assert_a_equal #42 | ||
|
||
:finish_spec() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.import source "64spec.asm" | ||
|
||
sfspec: :init_spec() | ||
|
||
lda #42 | ||
:assert_a_equal #42 | ||
:finish_spec() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters