More assert tests

Also test ldwarning and lderror options.
This commit is contained in:
Spiro Trikaliotis
2022-06-20 22:12:05 +02:00
parent e9888a0c28
commit 343bc1a489
26 changed files with 184 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
; 2022-06-18 Spiro Trikaliotis
.ASSERT * = $0000, lderror, "Code not at $0000"
.ASSERT * = $0001, lderror, "Code not at $0001"
.ASSERT * = $1000, lderror, "Code not at $1000"
.ASSERT * = $1001, lderror, "Code not at $1001"
.ASSERT * = $8000, lderror, "Code not at $8000"
.ASSERT * = $8001, lderror, "Code not at $8001"