Skip to content

Commit a01d277

Browse files
committed
Initial commit
1 parent b3f5418 commit a01d277

File tree

42 files changed

+2098
-3678
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+2098
-3678
lines changed

Cargo.lock

Lines changed: 52 additions & 136 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

applications/fps_counter/Cargo.toml

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
[package]
2+
name = "fps_counter"
3+
version = "0.1.0"
4+
5+
[dependencies]
6+
mpmc = "0.1.6"
7+
spin = "0.9.0"
8+
zerocopy = "0.5.0"
9+
core2 = { version = "0.4.0", default-features = false, features = ["alloc", "nightly"] }
10+
11+
[dependencies.porthole]
12+
path = "../../kernel/porthole"
13+
14+
[dependencies.log]
15+
version = "0.4.8"
16+
17+
[dependencies.memory]
18+
path = "../../kernel/memory"
19+
20+
[dependencies.memory_structs]
21+
path = "../../kernel/memory_structs"
22+
23+
[target.'cfg(target_arch = "x86_64")'.dependencies]
24+
page_attribute_table = { path = "../../kernel/page_attribute_table" }
25+
26+
[dependencies.multicore_bringup]
27+
path = "../../kernel/multicore_bringup"
28+
29+
[dependencies.spawn]
30+
path = "../../kernel/spawn"
31+
32+
[dependencies.task]
33+
path = "../../kernel/task"
34+
35+
[dependencies.scheduler]
36+
path = "../../kernel/scheduler"
37+
38+
[dependencies.stdio]
39+
path = "../../libs/stdio"
40+
41+
[dependencies.hpet]
42+
path = "../../kernel/acpi/hpet"
43+
44+
[dependencies.mouse_data]
45+
path = "../../libs/mouse_data"
46+
47+
[dependencies.mouse]
48+
path = "../../kernel/mouse"
49+
50+
[dependencies.event_types]
51+
path = "../../kernel/event_types"
52+
53+
[dependencies.keycodes_ascii]
54+
path = "../../libs/keycodes_ascii"
55+
56+
[dependencies.font]
57+
path = "../../kernel/font"
58+
59+
[dependencies.device_manager]
60+
path = "../../kernel/device_manager"

0 commit comments

Comments
 (0)