mirror of
https://github.com/SEPPDROID/Digital-Research-Source-Code.git
synced 2025-10-23 00:14:25 +00:00
16 lines
190 B
ArmAsm
16 lines
190 B
ArmAsm
.text
|
|
.globl _init
|
|
.globl _ccp
|
|
*
|
|
* Init Routine -- User fills in jump address
|
|
*
|
|
_init: jmp 0
|
|
*
|
|
* This jump to the CCP may be used by the user to achieve a warmboot
|
|
*
|
|
jmp _ccp
|
|
*
|
|
*
|
|
.end
|
|
|