Skip to content

Commit

Permalink
LLdebugMacro: Create a new proc-macro for lldebug
Browse files Browse the repository at this point in the history
  • Loading branch information
corigan01 committed Sep 30, 2024
1 parent 15b0095 commit aeff107
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ members = [
"crates/bootgfx",
"crates/lldebug",
"crates/serial"
]
, "crates/lldebug-macro"]

default-members = ["meta"]
resolver = "2"
Expand Down
1 change: 0 additions & 1 deletion bootloader/stage-16bit/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ mod mbr;
mod memory;
mod panic;
mod unreal;
// mod vbe;

#[no_mangle]
#[link_section = ".begin"]
Expand Down
12 changes: 12 additions & 0 deletions crates/lldebug-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[package]
name = "lldebug-macro"
edition = "2021"
version.workspace = true
authors.workspace = true
description.workspace = true
documentation.workspace = true

[lib]
proc-macro = true

[dependencies]
1 change: 1 addition & 0 deletions crates/lldebug-macro/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

0 comments on commit aeff107

Please sign in to comment.