source: rtems/c/src/lib/libbsp/mips/p4000/console/led.S @ 86748ff

4.104.114.84.95
Last change on this file since 86748ff was 86748ff, checked in by Joel Sherrill <joel.sherrill@…>, on 10/24/00 at 21:50:37

2000-10-24 Alan Cudmore <alanc@…> and

Joel Sherrill <joel@…>

  • This is a major reworking of the mips64orion port to use gcc predefines as much as possible and a big push to multilib the mips port. The mips64orion port was copied/renamed to mips to be more like other GNU tools. Alan did most of the technical work of determining how to map old macro names used by the mips64orion port to standard compiler macro definitions. Joel did the merge with CVS magic to keep individual file history and did the BSP modifications. Details follow:
  • console/led.S: Switch from using <idtmon.h> to <asm.h>.
  • console/start.S: Switch from using <idtmon.h> to <asm.h>. Added define of PMON stacksize.
  • console/idtmem.S: Switch from using <idtmon.h> to <asm.h>. Also reworked conditionals to use gcc predefines.
  • console/idttlb.S: Ditto.
  • Property mode set to 100644
File size: 251 bytes
Line 
1/*
2 *  $Id$
3 */
4
5#include <iregdef.h>
6#include <idtcpu.h>
7#include <asm.h>
8
9
10FRAME(mips_leddisplay,sp,0,ra)
11        j ra
12        nop
13ENDFRAME(mips_leddisplay)
14
15FRAME(sbddisplay,sp,0,ra)
16        j       ra
17ENDFRAME(sbddisplay)
18
19
20FRAME(sbdblank,sp,0,ra)
21        j       ra
22ENDFRAME(sbdblank)
23
Note: See TracBrowser for help on using the repository browser.