URL
https://opencores.org/ocsvn/blue/blue/trunk
Subversion Repositories blue
[/] [blue/] [trunk/] [blue8/] [itest.asm] - Rev 2
Compare with Previous | Blame | View Log
/* Now C comments work too but don't show in list */#include "blue.inc";; This tests the indexing;; by using index to point to the UART in some wayORG 0start0: DEFSTACKcall print_msgds "BLUE: \r\n"dw 0xffffstart: ldx uart ; contrived: use index register to uartLDIM('0',var)loop:call xmitwait ; wait for transmit readylda varstax 1 ; write and recycle if necessarycmp ninesnzlda zeroincasta varcall waitcharlda varjmp loopvar: DW 0zero: DW 0x002Fnine: DW 0x0039tmask: DW 0x7FFFds 'Test single'ds "Test double"ds '\r\n'dw 'A' ; testdw 'XY' ; test#include "syslib.inc"END
