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