Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ouz-a committed Feb 15, 2023
1 parent b3f5418 commit 56af037
Show file tree
Hide file tree
Showing 35 changed files with 2,106 additions and 1,671 deletions.
188 changes: 52 additions & 136 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

60 changes: 60 additions & 0 deletions applications/fps_counter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
[package]
name = "fps_counter"
version = "0.1.0"

[dependencies]
mpmc = "0.1.6"
spin = "0.9.0"
zerocopy = "0.5.0"
core2 = { version = "0.4.0", default-features = false, features = ["alloc", "nightly"] }

[dependencies.porthole]
path = "../../kernel/porthole"

[dependencies.log]
version = "0.4.8"

[dependencies.memory]
path = "../../kernel/memory"

[dependencies.memory_structs]
path = "../../kernel/memory_structs"

[target.'cfg(target_arch = "x86_64")'.dependencies]
page_attribute_table = { path = "../../kernel/page_attribute_table" }

[dependencies.multicore_bringup]
path = "../../kernel/multicore_bringup"

[dependencies.spawn]
path = "../../kernel/spawn"

[dependencies.task]
path = "../../kernel/task"

[dependencies.scheduler]
path = "../../kernel/scheduler"

[dependencies.stdio]
path = "../../libs/stdio"

[dependencies.hpet]
path = "../../kernel/acpi/hpet"

[dependencies.mouse_data]
path = "../../libs/mouse_data"

[dependencies.mouse]
path = "../../kernel/mouse"

[dependencies.event_types]
path = "../../kernel/event_types"

[dependencies.keycodes_ascii]
path = "../../libs/keycodes_ascii"

[dependencies.font]
path = "../../kernel/font"

[dependencies.device_manager]
path = "../../kernel/device_manager"
Loading

0 comments on commit 56af037

Please sign in to comment.