diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-09-01 08:43:46 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-09-01 08:43:46 +0200 |
| commit | 12fe96873ad4a2f1d3c7c3d9f84bc8eb367fb2f0 (patch) | |
| tree | 77722e773fb1b7f7b55a879c34863834ba6be8e5 /dev/boot/BootKit | |
| parent | 257b0a377e0e0f226623e7aa807780051a9cc9e6 (diff) | |
feat: Signal System improvements.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/boot/BootKit')
| -rw-r--r-- | dev/boot/BootKit/BitManip.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev/boot/BootKit/BitManip.h b/dev/boot/BootKit/BitManip.h index b1c72bfb..196953b3 100644 --- a/dev/boot/BootKit/BitManip.h +++ b/dev/boot/BootKit/BitManip.h @@ -8,7 +8,7 @@ #define __BITMANIP_H__ /// File: BitManip.h -/// Purpose: Bit manipulation helpers, based on coreboot-dev. +/// Purpose: Bit manipulation helpers, based on neboot-dev. #define bk_set_bit(X, O) X = (1 << O) | X #define bk_clear_bit(X, O) X = ~(1 << O) & X |
