ProjectTree Update

This commit is contained in:
Adrien Bourmault 2019-05-08 00:02:12 +02:00
parent 7383a03952
commit f66656c98e
2 changed files with 23 additions and 7 deletions

View File

@ -81,13 +81,22 @@
│   │   │   │   ├── heap.o
│   │   │   │   ├── malloc.o
│   │   │   │   └── map.o
│   │   │   ├── po
│   │   │   │   └── shtdwn.o
│   │   │   └── ps
│   │   │   └── sched.o
│   │   ├── libbuf
│   │   │   ├── bclose.o
│   │   │   ├── bflush.o
│   │   │   ├── bgetc.o
│   │   │   ├── bmisc.o
│   │   │   ├── bopen.o
│   │   │   ├── bprint.o
│   │   │   ├── bputc.o
│   │   │   ├── bread.o
│   │   │   ├── bscan.o
│   │   │   ├── bscroll.o
│   │   │   └── buf.o
│   │   │   └── bwrite.o
│   │   └── libc
│   │   ├── atoi.o
│   │   ├── ctype.o
@ -129,6 +138,7 @@
│   │   ├── mboot.h
│   │   ├── mm.h
│   │   ├── proc.h
│   │   ├── pwmgnt.h
│   │   ├── sched.h
│   │   ├── speaker.h
│   │   └── time.h
@ -165,14 +175,22 @@
│   │   │   ├── heap.c
│   │   │   ├── malloc.c
│   │   │   └── map.c
│   │   ├── po
│   │   │   └── shtdwn.c
│   │   └── ps
│   │   └── sched.c
│   ├── libbuf
│   │   ├── bclose.c
│   │   ├── bflush.c
│   │   ├── bgetc.c
│   │   ├── bmisc.c
│   │   ├── bopen.c
│   │   ├── bprint.c
│   │   ├── bputc.c
│   │   ├── bread.c
│   │   ├── bscan.c
│   │   ├── bscroll.c
│   │   └── buf.c
│   │   └── bwrite.c
│   └── libc
│   ├── atoi.c
│   ├── ctype.c
@ -186,10 +204,8 @@
├── AUTHORS
├── ChangeLog
├── COPYING
├── kaleid32_disasm.asm
├── kaleid64_disasm.asm
├── Makefile
├── ProjectTree
└── README.md
37 directories, 130 files
39 directories, 144 files

View File

@ -87,11 +87,11 @@ noreturn void BtStartKern(multiboot_info_t *mbInfo, uint mbMagic, void *codeSeg)
IoGetRtcTimeChar();
IoPrintRtcTime();
// IoDoStarWars();
IoDoStarWars();
KernLog("Goodbye at %s\n", IoGetRtcTimeChar());
PoShutdownQemu();
//PoShutdownQemu();
// End this machine's suffering
BFlushBuf(BStdOut);