diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-09-02 08:10:50 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-02 08:10:50 +0200 |
| commit | aead694f3cada63e4dc2d79653a5b0efe0d9f49f (patch) | |
| tree | 419c04a35244ca0f34dd537e5ee052fb732ebabc /dev/boot/BootKit | |
| parent | 36f7cf9ca4eb917ffd09fdfa6abf04ee10f3dc7e (diff) | |
| parent | 1661e5d91d8e7984f916e3ccf78311b4b8c00940 (diff) | |
Merge pull request #60 from nekernel-org/dev
v0.0.4e4 — Langley
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 |
