IRQ handler rewrite by Gabor Juhos, uses C no longer assembly
[openwrt/staging/chunkeey.git] / target / linux / etrax-2.6 / image / e100boot / src / cbl / src / crt0.S
1 .global crt0 ; Needed because of a bug in binutils
2 .global _target_address
3 .global _bytes_to_read
4
5 .section .startup, "ax"
6
7 nop
8 nop
9
10
11 crt0:
12 move.d 0x38001f00, sp
13 jump _crt1
14
15 _bytes_to_read: .dword 0x12345678
16 _target_address: .dword 0x87654321
17