StupidOS/boot/common/mbr.inc

16 lines
173 B
PHP
Raw Normal View History

2024-04-28 06:41:36 +00:00
;; File: mbr.inc
struc Partition
{
.status db ?
.chs_start db 3 dup(?)
.type db ?
.chs_last db 3 dup(?)
.lba dd ?
.sectors dd ?
}
2024-08-31 12:40:07 +00:00
DEFN Partition
2024-04-28 06:41:36 +00:00