blob: 91e42af6ad644a8299e2d0c451fce335d568a10b [file] [log] [blame]
kthacker62e146c2006-04-17 15:11:35 +00001;; File: putchar.s
2;; Modified to suit execution on the Amstrad CPC
3;; by H. Hansen 2003
4;; Original lines has been marked out!
5
6 .area _CODE
7_putchar::
kthacker62e146c2006-04-17 15:11:35 +00008 ld hl,#2
9 add hl,sp
10
11 ld a,(hl)
PulkoMandy2d1778f2014-06-29 13:18:25 +020012
13 ld bc,#0xef00
14 out (c),c
15 or #0x80
16 out (c),a
kthacker62e146c2006-04-17 15:11:35 +000017
kthacker62e146c2006-04-17 15:11:35 +000018 ret
PulkoMandy2d1778f2014-06-29 13:18:25 +020019