1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
451 B
Plaintext

*-----------------------------------------------------------
* Title : E
* Written by : George Tzikas <tzikas97@gmail.com>
* Date : 2018_12_08
* Description: E
*-----------------------------------------------------------
ORG $400400
MESSAGE DC.B 'E', 0
START ORG $400410
LEA MESSAGE, A1
*Use #14 for no CR, LF
LOOP MOVE.B #13, D0
TRAP #15
BRA LOOP
END START