URL
https://opencores.org/ocsvn/tv80/tv80/trunk
Subversion Repositories tv80
[/] [tv80/] [trunk/] [tests/] [basic_int.asm] - Rev 95
Go to most recent revision | Compare with Previous | Blame | View Log
.module basic_inttest_ctl_port = 0x80print_port = 0x81int_timeout_port = 0x90.area BOOT_VECjp main.area INT_VECint_entry:exxld b, ald hl, #int_seen_strprint_str:ld a, (hl)cp #0jp z, print_str_exitout (print_port), ainc hljp print_strprint_str_exit:ld a, bexxld h, #1reti.area _CODEmain:ld h, #0ld bc, #100ld a, #50out (int_timeout_port), atest_timeout_loop:ld a, #1cp hjp z, test_passdec bcjp nz, test_timeout_looptest_fail:ld a, #2out (test_ctl_port), a.db 0x76 ; hlttest_pass:ld a, #1out (test_ctl_port), a.db 0x76 ; hlt.area _DATAint_seen_str:.ascii "Interrupt asserted".db 0x0a.db 0x00
Go to most recent revision | Compare with Previous | Blame | View Log
