Mercurial > hg > Members > kono > nitros9-code
view level1/modules/dwwrmess.asm @ 2615:530759e9f289
Added ccbkrn from Brett Gordon (level 2 only for now)
author | Boisy Pitre <boisy.pitre@nuance.com> |
---|---|
date | Mon, 06 Feb 2012 15:51:13 -0600 |
parents | c92a6c65bbd9 |
children | c505ae3120c4 |
line wrap: on
line source
******************************************************* * * DWWriteMESS * * 4/27/10 AAW - Based on John Linville's example * * Entry: * X = starting address of data to send * Y = number of bytes to send * * Exit: * X = address of last byte sent + 1 * Y = 0 * All others preserved * DWWrite pshs u,d,cc ; preserve registers orcc #$50 ; mask interrupts txByte ldb ,x+ ; get a byte to transmit stb $ffe0 ; write it to the FIFO leay ,-y ; decrement byte counter bne txByte ; loop if more to send puls cc,d,u,pc ; restore registers and return