1992-05-15 13:55:14 +00:00
|
|
|
.define _send
|
|
|
|
.define _receive
|
|
|
|
.define _sendrec
|
|
|
|
.sect .text
|
|
|
|
.sect .rom
|
|
|
|
.sect .data
|
|
|
|
.sect .bss
|
1988-04-19 09:34:37 +00:00
|
|
|
! =====================================================================
|
|
|
|
! send and receive =
|
|
|
|
! =====================================================================
|
|
|
|
! send(), receive(), sendrec() destroy d0, d1, and a0.
|
|
|
|
|
1992-05-15 13:55:14 +00:00
|
|
|
.sect .text
|
1988-04-19 09:34:37 +00:00
|
|
|
|
1992-05-15 13:55:14 +00:00
|
|
|
_send: jmp __send
|
1988-04-19 09:34:37 +00:00
|
|
|
|
|
|
|
_receive:
|
1992-05-15 13:55:14 +00:00
|
|
|
jmp __receive
|
1988-04-19 09:34:37 +00:00
|
|
|
|
|
|
|
_sendrec:
|
1992-05-15 13:55:14 +00:00
|
|
|
jmp __sendrec
|