You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 line
320B

  1. #!/bin/bash
  2. GP=`mips-elf-nm ./main.elf | grep _gp | grep -v gpio | cut -b 1-8`
  3. cat > loader.s << EOF
  4. .text
  5. .align 2
  6. .globl _start
  7. .ent _start
  8. _start:
  9. .frame \$sp,16,\$31 # vars= 16, regs= 0/0, args= 0, gp= 0
  10. .mask 0x00000000,0
  11. .fmask 0x00000000,0
  12. .set noreorder
  13. .set nomacro
  14. li \$gp,0x$GP
  15. .end _start
  16. EOF