init_gpr.S 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /*
  2. * init_gpr.S
  3. *
  4. */
  5. /*
  6. Copyright (c) 2007-2018, MIPS Tech, LLC and/or its affiliated group companies or licensors
  7. All rights reserved.
  8. Redistribution and use in source and binary forms, with or without modification, are
  9. permitted provided that the following conditions are met:
  10. 1. Redistributions of source code must retain the above copyright notice, this list of
  11. conditions and the following disclaimer.
  12. 2. Redistributions in binary form must reproduce the above copyright notice, this list
  13. of conditions and the following disclaimer in the documentation and/or other materials
  14. provided with the distribution.
  15. 3. Neither the name of the copyright holder nor the names of its contributors may be
  16. used to endorse or promote products derived from this software without specific prior
  17. written permission.
  18. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
  19. EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  20. OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
  21. SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  22. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
  23. OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  24. HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  25. OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  26. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  27. */
  28. #include <mips/asm.h>
  29. #include <core_config.h>
  30. #include <mips/regdef.h>
  31. #include <mips/m32c0.h>
  32. .set noat // Don't allow the assembler to use r1(at) for synthetic instr.
  33. /**************************************************************************************
  34. **************************************************************************************/
  35. LEAF(init_gpr)
  36. // Initialize the general purpose registers and any shadow register sets.
  37. // Although not necessary, register initialization may be useful during debugging
  38. // to see if a register has ever been written
  39. // Initialize register sets
  40. li $1, 0xdeadbeef // (0xdeadbeef stands out, kseg2 mapped, odd.)
  41. move $2, $1
  42. move $3, $1
  43. move $4, $1
  44. move $5, $1
  45. move $6, $1
  46. move $7, $1
  47. move $8, $1
  48. move $9, $1
  49. move $10, $1
  50. move $11, $1
  51. move $12, $1
  52. move $13, $1
  53. move $14, $1
  54. move $15, $1
  55. move $16, $1
  56. move $17, $1
  57. move $18, $1
  58. move $19, $1
  59. move $20, $1
  60. move $21, $1
  61. move $22, $1
  62. move $23, $1
  63. move $24, $1
  64. move $25, $1
  65. move $26, $1
  66. move $27, $1
  67. move $28, $1
  68. move $29, $1
  69. move $30, $1
  70. // move $31, $1 // Don't clobber RA return pointer to be use to return to start.S (if inlining you can uncomment this line
  71. done_init_gpr:
  72. jr ra
  73. END(init_gpr)