-
Notifications
You must be signed in to change notification settings - Fork 4
/
filetree.txt
58 lines (57 loc) · 1.63 KB
/
filetree.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
src/
├── app
├── boot
│ ├── bootblock.s
│ └── sysboot.s
├── include
│ ├── boot
│ │ ├── bootblock.inc
│ │ └── sysboot.inc
│ ├── fs
│ │ ├── fat32const.h
│ │ ├── fat32dbr.inc
│ │ └── fat32struct.h
│ ├── io
│ │ ├── ata.h
│ │ ├── BIOScolor.h
│ │ ├── BIOScolor.inc
│ │ ├── i8042.h
│ │ ├── i8254.h
│ │ ├── i8259a.h
│ │ ├── i8259a.inc
│ │ └── VGAinfo.inc
│ └── kernel
│ ├── constent.h
│ ├── crash.inc
│ ├── daemon.h
│ ├── ELFstruct.inc
│ ├── intentry.inc
│ ├── kasm.h
│ ├── kproc.h
│ ├── protect.inc
│ ├── public.h
│ ├── servers.h
│ ├── sig.h
│ ├── sysaddr.inc
│ ├── sysldr.inc
│ ├── sysldrmacro.inc
│ └── type.h
└── kernel
├── intentry.s
├── kasm.s
├── kentry.s
├── kernel.c
├── klib
│ ├── basic.c
│ └── protect.c
├── servers
│ ├── clock.c
│ ├── hd.c
│ ├── keyboard.c
│ ├── kfs.c
│ ├── kproc.c
│ ├── mem.c
│ ├── msg.c
│ └── video.c
└── sysldr.s
10 directories, 45 files