fix: extended ascii rendering issue
This commit is contained in:
parent
23e5bf0045
commit
3689a5db69
2
.github/workflows/doc.yml
vendored
2
.github/workflows/doc.yml
vendored
|
@ -28,7 +28,7 @@ jobs:
|
||||||
sudo apt-get install build-essential naturaldocs
|
sudo apt-get install build-essential naturaldocs
|
||||||
- name: generate-docs
|
- name: generate-docs
|
||||||
run: |
|
run: |
|
||||||
make docs
|
LANG=en_US.UTF-8 make docs
|
||||||
- name: setup-pages
|
- name: setup-pages
|
||||||
uses: actions/configure-pages@v4
|
uses: actions/configure-pages@v4
|
||||||
- name: upload-artifact
|
- name: upload-artifact
|
||||||
|
|
|
@ -93,6 +93,34 @@ DEFN StpdFS_Sb
|
||||||
;; .zone - TODO
|
;; .zone - TODO
|
||||||
;; .actime - TODO
|
;; .actime - TODO
|
||||||
;; .modtime - TODO
|
;; .modtime - TODO
|
||||||
|
;;
|
||||||
|
;;
|
||||||
|
;; Zone 0-6 are direct, zone 7 indirect, zone 8 double indirect, zone 9 triple indirect
|
||||||
|
;; > ┌────────┐
|
||||||
|
;; > │ │
|
||||||
|
;; > ┌───────►│Data │
|
||||||
|
;; > │ │ │
|
||||||
|
;; > ┌──────┐ Direct│ └────────┘
|
||||||
|
;; > │zone 0├───────┘
|
||||||
|
;; > ├──────┤
|
||||||
|
;; > │... │
|
||||||
|
;; > ├──────┤ ┌────────┐ ┌────────┐
|
||||||
|
;; > │zone 6│ │ ├─────►│ │
|
||||||
|
;; > ├──────┤ Indirect │ │ │ Data │
|
||||||
|
;; > │zone 7├─────────►│ │ │ │
|
||||||
|
;; > ├──────┤ └────────┘ └────────┘
|
||||||
|
;; > │zone 8├───────┐
|
||||||
|
;; > ├──────┤ │Double indirect┌─────────┐ ┌────────┐ ┌─────────┐
|
||||||
|
;; > │zone 9│ └──────────────►│ ├───►│ ├───►│ │
|
||||||
|
;; > └──┬───┘ │ │ │ │ │ Data │
|
||||||
|
;; > │ │ │ │ │ │ │
|
||||||
|
;; > │ └─────────┘ └────────┘ └─────────┘
|
||||||
|
;; > │ Triple indirect ┌────────┐
|
||||||
|
;; > └────────────────►│ │ ┌──────────┐ ┌─────────┐ ┌──────────┐
|
||||||
|
;; > │ ├───►│ │ │ │ │ │
|
||||||
|
;; > │ │ │ ├─────►│ ├─────►│ Data │
|
||||||
|
;; > └────────┘ │ │ │ │ │ │
|
||||||
|
;; > └──────────┘ └─────────┘ └──────────┘
|
||||||
struc StpdFS_Inode {
|
struc StpdFS_Inode {
|
||||||
.mode dw ?
|
.mode dw ?
|
||||||
.nlink dw ?
|
.nlink dw ?
|
||||||
|
@ -117,6 +145,8 @@ struc StpdFS_Dirent {
|
||||||
}
|
}
|
||||||
DEFN StpdFS_Dirent
|
DEFN StpdFS_Dirent
|
||||||
|
|
||||||
|
STPDFS_DIRENT_PER_BLOCK = sizeof.StpdFS_Dirent / STPDFS_BSIZE
|
||||||
|
|
||||||
; ------------------------------------------------------------------------
|
; ------------------------------------------------------------------------
|
||||||
|
|
||||||
;; Section: Implementation
|
;; Section: Implementation
|
||||||
|
|
Loading…
Reference in a new issue