URL
https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk
Subversion Repositories openrisc_me
[/] [openrisc/] [trunk/] [gnu-src/] [newlib-1.18.0/] [libgloss/] [mt/] [crt0-64-001.S] - Rev 235
Go to most recent revision | Compare with Previous | Blame | View Log
; crt0_2.s - Startup code for the mrisc1. This code initializes the C; run-time model.;; 12Nov01 (DJK) - The return code from main was not being passed to exit().; Now it is passed as a parameter in R1.;; 10Sep01 (DJK) - The function exit() does not return. However, in the; the case of device error (if the halt bit does not; function properly, for instance), then a catch loop; has been added.;;; Copyright 2001, 2002, 2003, 2004 Morpho Technologies, Inc.;; Create a label for the start of the eh_frame section..section .eh_frame__eh_frame_begin:.equ HALT_REG, 0x300.section .text.global _start_start:;; Initialize the stack pointerldui sp, #%hi16(__stack)addui sp, sp, #%lo16(__stack)or fp, sp, sp;; Copy data from ROM to Frame Buffer (on-chip memory)ldui r9, #%hi16(_fbdata_start)ori r9, r9, #%lo16(_fbdata_start)ldui r10, #%hi16(_fbdata_end)ori r10, r10, #%lo16(_fbdata_end)ldui r11, #%hi16(__FRAME_BUFFER_START)brle r10, r9, .Lnext1ori r11, r11, #%lo16(__FRAME_BUFFER_START).Lcpy0:ldw r5, r9, #$0addi r9, r9, #$4stw r5, r11, #$0brlt r9, r10, .Lcpy0addi r11, r11, #$4.Lnext1:;; Copy data from ROM to External Memory (off-chip memory)ldui r9, #%hi16(_extdata_start)ori r9, r9, #%lo16(_extdata_start)ldui r10, #%hi16(_extdata_end)ori r10, r10, #%lo16(_extdata_end)ldui r11, #%hi16(__EXTERNAL_MEMORY_START)brle r10, r9, .Lnext2ori r11, r11, #%lo16(__EXTERNAL_MEMORY_START).Lcpy1:ldw r5, r9, #$0addi r9, r9, #$4stw r5, r11, #$0brlt r9, r10, .Lcpy1addi r11, r11, #$4.Lnext2:;; Zero the bss spaceldui r9, #%hi16(__bss_start)addui r9, r9, #%lo16(__bss_start)ldui r10, #%hi16(__bss_end)addui r10, r10, #%lo16(__bss_end)or r0, r0, r0brle r10, r9, .Lnext3or r0, r0, r0.Lcpy2:stw r0, r9, #0addi r9, r9, #4or r0, r0, r0 ; nopbrle r9, r10, .Lcpy2or r0, r0, r0 ; nop.Lnext3:;; Zero the external memory bss sectionldui r9, #%hi16(_extbss_start)ori r9, r9, #%lo16(_extbss_start)ldui r10, #%hi16(_extbss_end)ori r10, r10, #%lo16(_extbss_end)or r0, r0, r0brle r10, r9, .Lnext4or r0, r0, r0.Lcpy3:stw r0, r9, #$0addi r9, r9, #$4or r0, r0, r0brle r9, r10, .Lcpy3or r0, r0, r0.Lnext4:;; Call global and static constructorsldui r10, #%hi16(_init)ori r10, r10, #%lo16(_init)or r0, r0, r0 ; nopjal r14, r10or r0, r0, r0 ; nop;; Setup destructors to be called from exit.;; (Just in case main never returns....)ldui r10, #%hi16(atexit)ori r10, r10, #%lo16(atexit)ldui r1, #%hi16(_fini)ori r1, r1, #%lo16(_fini)or r0, r0, r0 ; nopjal r14, r10or r0, r0, r0 ; nop;; Initialise argc, argv and envp to emptyaddi r1, r0, #0addi r2, r0, #0addi r3, r0, #0;; Call mainldui r10, #%hi16(main)ori r10, r10, #%lo16(main)or r0, r0, r0 ; nopjal r14, r10or r0, r0, r0 ; nop;; DJK - Added 12Nov01. Pass main's return value to exit.or r1, r11, r0;; Jump to exitldui r10, #%hi16(exit)ori r10, r10, #%lo16(exit)or r0, r0, r0 ; nopjal r14, r10or r0, r0, r0 ; nop;; Exit does not return, however, this code is to catch an;; error if it does. Set the processor into sleep mode.ori r1, r0, #$1stw r1, r0, #HALT_REGor r0, r0, r0or r0, r0, r0or r0, r0, r0or r0, r0, r0or r0, r0, r0.Lend:jmp .Lendor r0, r0, r0
Go to most recent revision | Compare with Previous | Blame | View Log
