mirror of
https://github.com/rdolbeau/NuBusFPGA.git
synced 2024-11-19 08:31:46 +00:00
14 lines
308 B
ArmAsm
14 lines
308 B
ArmAsm
|
|
.byte sExec2 /* Code revision (Primary init) */
|
|
.byte sCPU68020 /* CPU type is 68020 */
|
|
.short 0 /* Reserved */
|
|
.long BeginPrimary-. /* Offset to code. */
|
|
|
|
BeginPrimary:
|
|
MOVE.L %A0, -(%A7)
|
|
JSR Primary
|
|
MOVE.L (%A7)+, %a0
|
|
rts
|
|
.include "NuBusFPGAPrimaryInit_Primary.s"
|
|
.text
|