mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
- Added magic numbers to pretend the NEC original program version
2.70.
- Added string display routine with Shift-JIS code support.
- Added three nop instructions at start1 in start.s since the
installaer of the IPLware put 'call $0x09ab' instruction.
- Put the near return instruction at 0x9ab in selector.s.
Since the Shit-JIS display routine must be located at 0x1243, the
linker script file (ldscript) is applied.
12 lines
141 B
Text
12 lines
141 B
Text
/*
|
|
* $FreeBSD$
|
|
*/
|
|
|
|
SECTIONS
|
|
{
|
|
.text : { *(.text) }
|
|
.data : { *(.data) }
|
|
. = 0x1243;
|
|
.putssjis : { *(.putssjis) }
|
|
.bss : { *(.bss) }
|
|
}
|