cleanup files
This commit is contained in:
parent
27c70ba1e6
commit
6ca65924c7
4 changed files with 5 additions and 28 deletions
16
.gitignore
vendored
16
.gitignore
vendored
|
|
@ -1,16 +1,10 @@
|
||||||
*.ld
|
|
||||||
.gdb_history
|
.gdb_history
|
||||||
.gdbinit
|
.gdbinit
|
||||||
.geminiignore
|
.geminiignore
|
||||||
.gitignore
|
.gitignore
|
||||||
.vscode
|
.vscode/
|
||||||
.vscode/tasks.json
|
|
||||||
build-elf.bat
|
|
||||||
build.bat
|
|
||||||
build.sh
|
|
||||||
build/
|
|
||||||
roms/qemu-vgabios.bin
|
|
||||||
roms/vgabios.bin
|
|
||||||
run.bat
|
|
||||||
ProjectX.code-workspace
|
ProjectX.code-workspace
|
||||||
gfx
|
build/
|
||||||
|
gfx/
|
||||||
|
roms/
|
||||||
|
tools/
|
||||||
|
|
|
||||||
17
src/boot.ld
17
src/boot.ld
|
|
@ -1,17 +0,0 @@
|
||||||
OUTPUT_FORMAT(elf32-i386)
|
|
||||||
ENTRY(reset_vector)
|
|
||||||
|
|
||||||
ROM_SIZE = 0x10000;
|
|
||||||
ROM_BASE = 0x100000000 - ROM_SIZE; /* 0xFFFF0000 */
|
|
||||||
|
|
||||||
SECTIONS
|
|
||||||
{
|
|
||||||
. = ROM_BASE;
|
|
||||||
|
|
||||||
.text : { *(.text*) *(.rodata*) *(.data*) }
|
|
||||||
|
|
||||||
/* Place le reset vector à 0xFFFFFFF0 (16 octets avant 4GB) */
|
|
||||||
.reset 0xFFFFFFF0 : { KEEP(*(.reset)) }
|
|
||||||
|
|
||||||
/DISCARD/ : { *(.eh_frame*) *(.comment*) }
|
|
||||||
}
|
|
||||||
Loading…
Reference in a new issue