.global _start
|
|
/* Vectors */
|
|
.long 0 /* Reset SSP - TODO */
|
|
.long _start /* Reset vector */
|
|
|
|
.org 0x100
|
|
.long timer /* Timer vector */
|
|
|
|
.org 0x400
|
|
/*
|
|
This subroutine runs on first boot, or
|
|
when the device is reset
|
|
*/
|
|
_start:
|
|
MOVE.L #0xDEADBEEF, %A0
|
|
|
|
.include "timer.s"
|