summaryrefslogtreecommitdiff
path: root/test/hello-world.s
blob: f3b540a466878c6d549e1a3e59a20bdd75d08d5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
; Hello world.
; Writen in Sux assembly by mr b0nk 500 <b0nk@b0nk.xyz>

status	= $100		; Status.
scr	= $101		; Screen output.


; Initialize, and declare variables.
.org $A000
string:
	.byte "Hello, world!\n"

; Text buffer.
.org $2000
buffer:


; Get CPU into a known state.
.org $8000
reset:
	cps		; Reset the processor status.
	ldx.w #$FFFF	; Set up the stack pointer.
	txs		; Reset the stack pointer.

; Start of main program.
start:
	ldx.w #$0	; Reset x.
	jmp print

line_count:
	iny		; Increment the line count.
	cpy #50		; Have we printed 50 lines?
	beq disp	; Yes, so we're done.
	jmp start	; No, so keep looping.

; Printing sub routine.
print:
	lda string, x	; Get character at offset x.
	beq line_count	; Did we find a null terminator?
	sta scr		; Print character.
	inx		; Increment offset.
	jmp print	; Keep printing more characters.

; The other threads would clash, if we're running the same code.
; So, have them spin instead, please?
disp:
	lda status
spin:
	nop
	nop
	nop
	jmp spin


.org $FFC0
.qword reset

.org $FF50
.qword spin
.qword spin
.qword spin
.qword spin
.qword spin
.qword spin
.qword spin
a
d