diff options
Diffstat (limited to 'test/e2e')
| -rw-r--r-- | test/e2e/fibo/bootstrap.atk16 | 2 | ||||
| -rw-r--r-- | test/e2e/fibo/test_fibo.py | 2 | ||||
| -rw-r--r-- | test/e2e/just_hlt/test_just_hlt.py | 2 | ||||
| -rw-r--r-- | test/e2e/sum/test_sum.py | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/test/e2e/fibo/bootstrap.atk16 b/test/e2e/fibo/bootstrap.atk16 index 0fe2a9d..9b024e6 100644 --- a/test/e2e/fibo/bootstrap.atk16 +++ b/test/e2e/fibo/bootstrap.atk16 @@ -1,4 +1,4 @@ -@let sp RH +@let SP RH ; vector table fields @let vector_table 0x10 diff --git a/test/e2e/fibo/test_fibo.py b/test/e2e/fibo/test_fibo.py index 6dae09b..a7146fc 100644 --- a/test/e2e/fibo/test_fibo.py +++ b/test/e2e/fibo/test_fibo.py @@ -8,7 +8,7 @@ def test_fibo(): source = f.read() obj = assemble(source, filename) - rom_image = pad_bytearray(obj) + rom_image = pad_bytearray(obj.program) machine = Machine() machine.load_rom_image(rom_image) diff --git a/test/e2e/just_hlt/test_just_hlt.py b/test/e2e/just_hlt/test_just_hlt.py index 60c59b0..c037615 100644 --- a/test/e2e/just_hlt/test_just_hlt.py +++ b/test/e2e/just_hlt/test_just_hlt.py @@ -8,7 +8,7 @@ def test_just_hlt(): source = f.read() obj = assemble(source, filename) - rom_image = pad_bytearray(obj) + rom_image = pad_bytearray(obj.program) machine = Machine() machine.load_rom_image(rom_image) diff --git a/test/e2e/sum/test_sum.py b/test/e2e/sum/test_sum.py index 3484af5..3edc1aa 100644 --- a/test/e2e/sum/test_sum.py +++ b/test/e2e/sum/test_sum.py @@ -8,7 +8,7 @@ def test_sum(): source = f.read() obj = assemble(source, filename) - rom_image = pad_bytearray(obj) + rom_image = pad_bytearray(obj.program) machine = Machine() machine.load_rom_image(rom_image) |
