Skip to content

Commit e634613

Browse files
committed
- Add read/write count test feature for registers
- Make definitions more flexible
1 parent 8749847 commit e634613

File tree

62 files changed

+2061
-783
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+2061
-783
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# 6502 Unit Test executor
2-
This tool enables [unit testing](https://en.wikipedia.org/wiki/Unit_testing) for 6502 assembly programs on a cross-platform basis.
2+
This tool enables [unit testing](https://en.wikipedia.org/wiki/Unit_testing) for [MOS Technology 6502](https://en.wikipedia.org/wiki/MOS_Technology_6502) assembly programs on a cross-platform basis.
33

44
## Getting started
55
[A simple example project](https://github.com/AsaiYusuke/6502_test_executor/tree/master/example) has everything you need for this tool.
@@ -29,7 +29,7 @@ All tests passed.
2929
| | Register | Memory | Stack |
3030
| :------------------------ | :----------------: | :----------------: | :----------------: |
3131
| Check value | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
32-
| Check read/write count | | :heavy_check_mark: | |
32+
| Check read/write count | :heavy_check_mark: | :heavy_check_mark: | |
3333
| Check write value history | | :heavy_check_mark: | |
3434
- Evaluate processor information
3535
- Cycle count

example/test/fail/format_error_array_as_number.test.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
"setup": {
1111
"register": {
1212
"A": {
13-
"address": []
13+
"value": {
14+
"address": []
15+
}
1416
}
1517
}
1618
},

example/test/fail/format_error_unknown_radix.test.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
"setup": {
1111
"register": {
1212
"A": {
13-
"address": "#address"
13+
"value": {
14+
"address": "#address"
15+
}
1416
}
1517
}
1618
},

0 commit comments

Comments
 (0)