OpenCores
URL https://opencores.org/ocsvn/hf-risc/hf-risc/trunk

Subversion Repositories hf-risc

[/] [hf-risc/] [trunk/] [software/] [boot/] [bootloader_sim.c] - Blame information for rev 13

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 13 serginhofr
/* bootloader.c */
2
#include <hf-risc.h>
3
 
4
int32_t main(void){
5
        funcptr funcPtr;
6
 
7
        uart_init(57600);
8
 
9
/*      printf("\n=====================================================================");
10
        printf("\nWelcome to the HF-RISC Bootloader - ");
11
        printf(__DATE__); printf(" "); printf(__TIME__);
12
        printf("\nEmbedded Systems Group - GSE, PUCRS - [2006 - 2015]");
13
        printf("\n=====================================================================\n");
14
*/
15
        printf("boot\n");
16
 
17
        funcPtr = (funcptr)ADDR_RAM_BASE;
18
        funcPtr();
19
 
20
        return 0;
21
}
22
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.