re-enable tests

Disabled in commit 1354161a3, and then I forgot about them for a while.
This commit is contained in:
Kartik K. Agaram 2021-04-18 23:26:38 -07:00
parent 53b56c67a9
commit 5c5bca9df5
1 changed files with 13 additions and 13 deletions

View File

@ -12,19 +12,19 @@
Entry:
# initialize stack
bd/copy-to-ebp 0/imm32
(main 0 0 Primary-bus-secondary-drive)
#? # always first run tests
#? (run-tests)
#? (num-test-failures) # => eax
#? # call main if tests all passed
#? {
#? 3d/compare-eax-and 0/imm32
#? 75/jump-if-!= break/disp8
#? (clear-real-screen)
#? c7 0/subop/copy *Real-screen-cursor-x 0/imm32
#? c7 0/subop/copy *Real-screen-cursor-y 0/imm32
#? (main 0 0 Primary-bus-secondary-drive)
#? }
#? (main 0 0 Primary-bus-secondary-drive)
# always first run tests
(run-tests)
(num-test-failures) # => eax
# call main if tests all passed
{
3d/compare-eax-and 0/imm32
75/jump-if-!= break/disp8
(clear-real-screen)
c7 0/subop/copy *Real-screen-cursor-x 0/imm32
c7 0/subop/copy *Real-screen-cursor-y 0/imm32
(main 0 0 Primary-bus-secondary-drive)
}
# hang indefinitely
{