summaryrefslogtreecommitdiff
path: root/package/etrax-tools/src/e100boot/cbl/src/crt0.S
blob: 466d19c7e1e86151e81519827b687c40967b761a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
	.global crt0    ; Needed because of a bug in binutils
	.global _target_address 
	.global _bytes_to_read

	.section .startup, "ax"

	nop
	nop

	
crt0:
	move.d 0x38001f00, sp
	jump _crt1
	
_bytes_to_read:	 .dword 0x12345678
_target_address: .dword 0x87654321