Python please fk off

This commit is contained in:
secXsQuared 2016-06-05 01:09:01 -07:00
parent c98c7c6c98
commit a3b0d89139
3 changed files with 31 additions and 1 deletions

1
.gitignore vendored
View File

@ -196,7 +196,6 @@ $RECYCLE.BIN/
*.egg
*.egg-info
dist/
build/
eggs/
parts/
var/

3
x64/build/grub.cfg Normal file
View File

@ -0,0 +1,3 @@
menuentry "secX x64 [Dev]" {
multiboot2 /secX/kernel.bin
}

28
x64/build/linker.ld Normal file
View File

@ -0,0 +1,28 @@
SECTIONS
{
. = 0x1000000;
kernel_start = .;
.entry : ALIGN(0x1000)
{
*(.entry)
}
.text : ALIGN(0x1000)
{
*(.text)
}
.data : ALIGN(0x1000)
{
*(.data)
*(.rodata)
}
.bss : ALIGN(0x1000)
{
*(.bss)
}
kernel_end = .;
}