summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i386/i386ex/start/start.S (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Remove (Abandoned).Ralf Corsepius2011-03-011-480/+0
|
* 2009-04-28 Chris Johns <chrisj@rtems.org>Chris Johns2009-04-281-3/+1
| | | | * start/start.S: Update for boot_card command line change.
* Remove duplicate white lines.Ralf Corsepius2004-04-211-9/+0
|
* Remove stray white spaces.Ralf Corsepius2004-04-211-109/+109
|
* Remove stray white spaces.Ralf Corsepius2004-04-151-1/+0
|
* * start/start.S: Include <rtems/asm.h> instead of <asm.h>.Ralf Corsepius2004-04-021-1/+1
| | | | * timer/timerisr.S: Include <rtems/asm.h> instead of <asm.h>.
* 2003-09-04 Joel Sherrill <joel@OARcorp.com>Joel Sherrill2003-09-041-1/+1
| | | | | | | * clock/ckinit.c, console/console.c, include/bsp.h, include/coverhd.h, start/80386ex.h, start/80386ex.inc, start/macros.inc, start/start.S, startup/bspstart.c, startup/linkcmds, startup/setvec.c, timer/timer.c, timer/timerisr.S: URL for license changed.
* Merged from 4.5.0-beta3aJoel Sherrill2000-06-121-2/+2
|
* BSP now links although this change is untested.Joel Sherrill2000-01-311-3/+7
|
* Patch from Erik Ivanenko <erik.ivanenko@utoronto.ca> to fix someJoel Sherrill1999-10-261-28/+68
| | | | reported bugs in the start code.
* Fix By Joel based on suggestion from Ian Lance Taylor <ian@airs.com>Joel Sherrill1999-08-021-1/+10
| | | | | | | | | | | | | | | | | | | | | | | | to fix problem reported by Ralf Corsepius <corsepiu@faw.uni-ulm.de>. Date: Fri, 30 Jul 1999 14:53:20 -0500 (CDT) From: <joel@oarcorp.com> it is used like this in i386ex/start/start.S /* set up same values in cache */ start.S: movw $0xFFFB, SYM(i8259s_cache) I am heading out the door. Any other ideas what could have tripped this? This instruction appears in a .code16 section. In a .code16 section, current versions of gas assume that all addresses are 16 bits unless told otherwise. If you change the line to addr32 movw $0xFFFB, SYM(i8259s_cache) then you will get a 32 bit address reference. You may want to use addr32 only when NEW_GAS is defined.
* Patch from Erik Ivanenko <erik.ivanenko@utoronto.ca> to correct 32 bitJoel Sherrill1999-05-111-0/+2
| | | | jmp relative offset from .reset section.
* Patch from Ralf Corsepius <corsepiu@faw.uni-ulm.de> to rename allJoel Sherrill1998-12-141-0/+437
.s files to .S in conformance with GNU conventions. This is a minor step along the way to supporting automake.