cleanup files

This commit is contained in:
Frater 2026-02-07 12:53:50 +01:00
commit 6ca65924c7
4 changed files with 5 additions and 28 deletions

16
.gitignore vendored
View file

@ -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/

View file

@ -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*) }
}