Skip to content

Commit

Permalink
Updated code to match code structure
Browse files Browse the repository at this point in the history
Signed-off-by: Dan Printzell <xwildn00bx@gmail.com>
  • Loading branch information
Vild committed Mar 28, 2017
1 parent 861802b commit 988085a
Show file tree
Hide file tree
Showing 102 changed files with 5,203 additions and 4,733 deletions.
4 changes: 2 additions & 2 deletions .editorconfig
Expand Up @@ -6,14 +6,14 @@ end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
max_line_length = 120
max_line_length = 160

[*.md]
trim_trailing_whitespace = false

[*.d]
dfmt_brace_style = otbs
dfmt_soft_max_line_length = 80
dfmt_soft_max_line_length = 120
dfmt_align_switch_statements = true
dfmt_outdent_attributes = true
dfmt_split_operator_at_line_end = false
Expand Down
18 changes: 1 addition & 17 deletions .gitignore
@@ -1,25 +1,9 @@
.wild-cache
build.dot
PowerNex.krl
PowerNex.map
PowerNex.dsk
wild
obj/
PowerNex.iso
powernex.iso
bochsout.txt
bx_enh_dbg.ini
/cc
COM1.log
Utils/GenerateSymbols
Utils/MakeInitrd
.vscode
*.psf
*.o
.dub
Initrd/Binary
*.a
*.krl
*.di
*~
*.ninja*
*.reggae
Expand Down
204 changes: 0 additions & 204 deletions build

This file was deleted.

6 changes: 3 additions & 3 deletions env.sh
Expand Up @@ -4,7 +4,7 @@ function initPowerNex() {
dub run reggae -- -b ninja .
fi
}
function c() {rm -rf objs && echo "Clean successful" || echo "Clean failed"}
function c() {rm -rf objs powernex.iso && echo "Clean successful" || echo "Clean failed"}
function v() {initPowerNex && ninja}
function b() {v && qemu-system-x86_64 -cdrom PowerNex.iso -m 2048 -monitor stdio -serial file:COM1.log -no-reboot 2>/dev/null}
function a() {addr2line -e Disk/boot/PowerNex.krl $1}
function b() {v && qemu-system-x86_64 -cdrom powernex.iso -m 2048 -monitor stdio -serial file:COM1.log -no-reboot 2>/dev/null}
function a() {addr2line -e disk/boot/powernex.krl $1}

0 comments on commit 988085a

Please sign in to comment.