diff options
| author | Amlal El Mahrouss <zka-holder@mahrouss-logic.com> | 2024-10-20 07:07:08 +0000 |
|---|---|---|
| committer | Amlal El Mahrouss <zka-holder@mahrouss-logic.com> | 2024-10-20 07:07:08 +0000 |
| commit | 704879ab7f080ce60bcffda02e3dda6330a4f1fd (patch) | |
| tree | 3970ff78405684f08f01e9e68ebb77a038c28e57 /dev/hpfs/epm | |
| parent | 9d092dd8a9bff165d6159e9fbedb2e361ff54987 (diff) | |
NeFS: Officialize minimum disk size into the specs.
HPFS: Start implementing it.
UPS: Check PTime, and decrementing it when it isn't our time yet, also added new Subsystem entries.
FSKit: Better documentation and provide 256U instead of only 256.
EBS: Fixed HPFS magic number, which wasn't correctly bound to 8 bytes.
BUILD: Fixed blob.json for epm.asm
Diffstat (limited to 'dev/hpfs/epm')
| -rw-r--r-- | dev/hpfs/epm/blob.json | 4 | ||||
| -rw-r--r-- | dev/hpfs/epm/ebs.i | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/dev/hpfs/epm/blob.json b/dev/hpfs/epm/blob.json index 4ce4fc1c..4b1905b5 100644 --- a/dev/hpfs/epm/blob.json +++ b/dev/hpfs/epm/blob.json @@ -1,6 +1,6 @@ { "compiler_path": "nasm", - "sources_path": ["EPM.asm"], - "output_name": "hpfs.bin", + "sources_path": ["epm.asm"], + "output_name": "bl.bin", "compiler_flags": ["-f bin"] } diff --git a/dev/hpfs/epm/ebs.i b/dev/hpfs/epm/ebs.i index c137b6f4..c486f463 100644 --- a/dev/hpfs/epm/ebs.i +++ b/dev/hpfs/epm/ebs.i @@ -7,7 +7,7 @@ ;; DUMP THIS BLOB TO DISK, WHEN FORMATTING THE SSD. HPFS_EBS_HEADER: - db " HPFS" ;; MAGIC NUMBER OF FILESYSTEM + db " HPFS", 0 ;; MAGIC NUMBER OF FILESYSTEM dw 8 ;; MAGIC NUMBER LENGTH. dq 0 ;; RESERVED 4 dw 0x0100 ;; VERSION |
