URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [hello-uart/] [reset.S] - Rev 1769
Go to most recent revision | Compare with Previous | Blame | View Log
#include "board.h"#include "mc.h".global ___main.section .stack, "aw", @nobits.space STACK_SIZE_stack:.section .vectors, "ax".org 0x100_reset:l.movhi r1,hi(_stack-4)l.ori r1,r1,lo(_stack-4)l.addi r2,r0,-3l.and r1,r1,r2l.movhi r2,hi(_main)l.ori r2,r2,lo(_main)l.jr r2l.addi r2,r0,0___main:l.jr r9l.nop
Go to most recent revision | Compare with Previous | Blame | View Log
