-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Built the kernel.img, kernel.list and kernel.map Added .gitignore
- Loading branch information
Showing
7 changed files
with
63 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
build/ | ||
*.sw[po] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ SECTIONS { | |
*(.init) | ||
} | ||
|
||
/DISCARD/: { | ||
/DISCARD/ : { | ||
*(*) | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
|
||
build/output.elf: file format elf32-littlearm | ||
|
||
Disassembly of section .init: | ||
|
||
00008000 <_start>: | ||
8000: e59f0018 ldr r0, [pc, #24] ; 8020 <loop$+0x4> | ||
8004: e3a01001 mov r1, #1 ; 0x1 | ||
8008: e1a01901 lsl r1, r1, #18 | ||
800c: e5801004 str r1, [r0, #4] | ||
8010: e3a01001 mov r1, #1 ; 0x1 | ||
8014: e1a01801 lsl r1, r1, #16 | ||
8018: e5801028 str r1, [r0, #40] | ||
|
||
0000801c <loop$>: | ||
801c: eafffffe b 801c <loop$> | ||
8020: 20200000 .word 0x20200000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
|
||
Discarded input sections | ||
|
||
.text 0x00000000 0x0 build/main.o | ||
.data 0x00000000 0x0 build/main.o | ||
.bss 0x00000000 0x0 build/main.o | ||
.ARM.attributes | ||
0x00000000 0x0 build/main.o | ||
.glue_7 0x00000000 0x0 build/main.o | ||
.glue_7t 0x00000000 0x0 build/main.o | ||
.vfp11_veneer 0x00000000 0x0 build/main.o | ||
.janus_2cc_veneer | ||
0x00000000 0x0 build/main.o | ||
.v4_bx 0x00000000 0x0 build/main.o | ||
|
||
Memory Configuration | ||
|
||
Name Origin Length Attributes | ||
*default* 0x00000000 0xffffffff | ||
|
||
Linker script and memory map | ||
|
||
LOAD build/main.o | ||
|
||
.init 0x00008000 0x24 | ||
*(.init) | ||
.init 0x00008000 0x24 build/main.o | ||
0x00008000 _start | ||
|
||
/DISCARD/ | ||
*(*) | ||
OUTPUT(build/output.elf elf32-littlearm) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters