Rename FABRIC series: FABRIC.md->0, FABRIC-2.md->1, FABRIC-3.md->2, FABRIC-4.md unchanged
FABRIC.md -> FABRIC-0.md FABRIC-2.md -> FABRIC-1.md FABRIC-3.md -> FABRIC-2.md (the current/living document) FABRIC-4.md unchanged (new #3 to follow separately) Every cross-reference repo-wide updated to match, including doc-comment citations inside kernel source (.c/.h) files -- done via an ordered placeholder substitution (FABRIC-3.md->placeholder2, FABRIC-2.md-> placeholder1, FABRIC.md->placeholder0, then placeholders resolved to final names) in a single pass per file to avoid double-shifting already-renamed references. One line in capsules/font.4th grew past the 64-char block-format limit as a side effect of the longer filename; shortened it and reverified with mkcapsule --lint (34/34 pass) before rebuilding. Verified 3-arch boot to ok> (amd64/aarch64/riscv64, each in the foreground) after the fix; logs and DoE CSVs from this session's verification runs included per this repo's own audit-artifact convention. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_019YcT3H2PQeyujrzjqS3Var
This commit is contained in:
co-authored by
Claude Sonnet 5
parent
ff2941dfb9
commit
b031b802e3
@@ -58,7 +58,7 @@
|
||||
#include <stdio.h>
|
||||
|
||||
#ifdef __STARKERNEL__
|
||||
#include "starkernel/vm/stadium_blocks.h" /* stadium_block_dispatch() -- FABRIC-3.md §B */
|
||||
#include "starkernel/vm/stadium_blocks.h" /* stadium_block_dispatch() -- FABRIC-2.md §B */
|
||||
#endif
|
||||
|
||||
/* ----------------------------------------------------------------------
|
||||
@@ -281,7 +281,7 @@ static vaddr_t blk_vm_assign(VM *vm, uint32_t lbn) {
|
||||
* (block_word_save_buffers() below is a one-line wrapper) -- exposed
|
||||
* (declared in block_words.h) so kernel-side code can reuse the exact
|
||||
* same flush path outside the word-dispatch mechanism, e.g. sk_repl_idle()
|
||||
* (see FABRIC.md/FABRIC-2.md Section V item 6). Cheap to call when
|
||||
* (see FABRIC-0.md/FABRIC-1.md Section V item 6). Cheap to call when
|
||||
* nothing is dirty: every check below is a small fixed-size scan
|
||||
* (BLK_VM_SLOTS here, DISK_CACHE_SLOTS per device inside blk_flush()),
|
||||
* no I/O happens unless something actually needs writing. */
|
||||
@@ -551,7 +551,7 @@ void block_word_next_block(VM *vm) {
|
||||
}
|
||||
}
|
||||
|
||||
/* --- BMAPFMT block-ACL words (FABRIC-3.md §F.4/§H.6/§H.12 step 15) ----
|
||||
/* --- BMAPFMT block-ACL words (FABRIC-2.md §F.4/§H.6/§H.12 step 15) ----
|
||||
* Raw C-primitive accessors, matching the word-level ACL system's own
|
||||
* split: policy is composed in FORTH on top of these (a new capsule,
|
||||
* §H.12 step 16), not here. block_num validated the same way BLOCK/
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
*/
|
||||
|
||||
/* framebuffer_words.c — raw framebuffer hardware-boundary FORTH words
|
||||
* (FABRIC.md item 4.3.3). Kernel-only; no-op on hosted builds. */
|
||||
* (FABRIC-0.md item 4.3.3). Kernel-only; no-op on hosted builds. */
|
||||
|
||||
#include "include/framebuffer_words.h"
|
||||
#include "../../include/log.h"
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
* @{
|
||||
*
|
||||
* @brief Raw hardware-boundary FORTH words for the Console drawing fabric
|
||||
* (FABRIC.md item 4.3.3). Deliberately raster-native -- no Cartesian
|
||||
* (FABRIC-0.md item 4.3.3). Deliberately raster-native -- no Cartesian
|
||||
* awareness, no policy. That lives in capsules/fabric.4th instead, per the
|
||||
* compose-in-FORTH-first rule.
|
||||
*
|
||||
|
||||
@@ -17,9 +17,9 @@
|
||||
* @{
|
||||
*
|
||||
* @brief Raw hardware-boundary FORTH word for verifying the interrupt-driven
|
||||
* keyboard path (FABRIC.md item 4.3.5). Deliberately a diagnostic peek at
|
||||
* keyboard path (FABRIC-0.md item 4.3.5). Deliberately a diagnostic peek at
|
||||
* the raw scancode ring buffer -- no set-2 translation, no REPL wiring.
|
||||
* Those belong to the later REPL keyboard-input work noted in FABRIC.md.
|
||||
* Those belong to the later REPL keyboard-input work noted in FABRIC-0.md.
|
||||
*
|
||||
* Kernel-only, amd64-only today (i8042 is amd64 hardware); no-op elsewhere
|
||||
* so dictionary parity across all three architectures is unaffected.
|
||||
@@ -52,7 +52,7 @@
|
||||
* on; KBD-SCAN/VKBD-EVENT remain as lower-level per-device diagnostics.
|
||||
*
|
||||
* @par ALT+TAB ( -- )
|
||||
* FABRIC.md item 4.4y-revised. Programmatic equivalent of the physical
|
||||
* FABRIC-0.md item 4.4y-revised. Programmatic equivalent of the physical
|
||||
* Alt+TAB graphics/text toggle -- calls the same state-machine transition
|
||||
* (console_fb_toggle_graphics() / vt100_toggle_graphics()) the keyboard
|
||||
* interception in repl.c uses, so there is exactly one place the toggle
|
||||
@@ -63,7 +63,7 @@
|
||||
void register_keyboard_words(VM *vm);
|
||||
|
||||
/**
|
||||
* FABRIC.md item 4.4v: shared C-level poll, one converged event stream
|
||||
* FABRIC-0.md item 4.4v: shared C-level poll, one converged event stream
|
||||
* (Linux input keycode namespace, all three architectures) -- see
|
||||
* KEY-EVENT's doc comment above for the full per-arch translation
|
||||
* rationale. Used by both kbw_key_event() (the FORTH word) and the REPL
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
* @{
|
||||
*
|
||||
* @brief `SCROLL-BACK`/`SCROLL-FWD`, the REPL scrollback controls
|
||||
* (FABRIC.md item 4.4q). Kernel-only; no-op on hosted builds (no
|
||||
* (FABRIC-0.md item 4.4q). Kernel-only; no-op on hosted builds (no
|
||||
* framebuffer console there).
|
||||
*
|
||||
* @par SCROLL-BACK ( n -- )
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
* @defgroup ttf_words TrueType Text Words
|
||||
* @{
|
||||
*
|
||||
* @brief `TTF-TEXT`, the TrueType-backed text entry point (FABRIC.md item
|
||||
* @brief `TTF-TEXT`, the TrueType-backed text entry point (FABRIC-0.md item
|
||||
* 4.3.7e). Kernel-only; no-op on hosted builds (no framebuffer/capsule
|
||||
* system exists there).
|
||||
*
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
Licensed under the StarForth License, Version 1.0
|
||||
*/
|
||||
|
||||
/* keyboard_words.c — raw scancode-ring diagnostic word (FABRIC.md item
|
||||
/* keyboard_words.c — raw scancode-ring diagnostic word (FABRIC-0.md item
|
||||
* 4.3.5). Kernel-only, amd64-only; no-op elsewhere. */
|
||||
|
||||
#include "include/keyboard_words.h"
|
||||
@@ -121,7 +121,7 @@ static void kbw_vdebug(VM *vm)
|
||||
* field already lives in the same Linux keycode namespace; `value` is
|
||||
* mapped 1:1 except autorepeat (value=2), folded into "still pressed"
|
||||
* here since this checkpoint's shape only distinguishes press/release. */
|
||||
/* FABRIC.md item 4.4v: shared C-level implementation, so the REPL
|
||||
/* FABRIC-0.md item 4.4v: shared C-level implementation, so the REPL
|
||||
* keyboard bridge (repl.c) and the KEY-EVENT FORTH word below poll the
|
||||
* exact same converged event stream rather than each re-deriving the
|
||||
* per-arch translation kbw_key_event's own doc comment already explains
|
||||
@@ -166,7 +166,7 @@ static void kbw_key_event(VM *vm)
|
||||
}
|
||||
}
|
||||
|
||||
/* ALT+TAB ( -- ): FABRIC.md item 4.4y-revised. Programmatic equivalent of
|
||||
/* ALT+TAB ( -- ): FABRIC-0.md item 4.4y-revised. Programmatic equivalent of
|
||||
* the physical Alt+TAB interception (repl.c's sk_kbd_getc()) -- both call
|
||||
* console_fb_toggle_graphics(), so there is exactly one state-machine
|
||||
* transition, invoked two ways. */
|
||||
|
||||
@@ -418,7 +418,7 @@ q48_16_t q48_sqrt_approx(q48_16_t q)
|
||||
* Approximation: Sine / Cosine (Integer-Only, Taylor Series)
|
||||
* ============================================================================
|
||||
*
|
||||
* FABRIC.md item 4.3.3a -- needed by the Console drawing fabric's
|
||||
* FABRIC-0.md item 4.3.3a -- needed by the Console drawing fabric's
|
||||
* CIRCLE/ARC/ELLIPSE (item 4.3.3b). Radian input, same Taylor-series
|
||||
* approach as q48_exp_approx above.
|
||||
*
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
Licensed under the StarForth License, Version 1.0
|
||||
*/
|
||||
|
||||
/* scroll_words.c — REPL scrollback entry points (FABRIC.md item 4.4q).
|
||||
/* scroll_words.c — REPL scrollback entry points (FABRIC-0.md item 4.4q).
|
||||
* Kernel-only; no-op on hosted builds. */
|
||||
|
||||
#include "include/scroll_words.h"
|
||||
|
||||
@@ -793,7 +793,7 @@ static void starforth_word_zuse_authenticate(VM *vm)
|
||||
vm->zuse_session = 1;
|
||||
}
|
||||
|
||||
/* ZUSE-SESSION? ( -- flag ) Read-only diagnostic (FABRIC-3.md §F.21,
|
||||
/* ZUSE-SESSION? ( -- flag ) Read-only diagnostic (FABRIC-2.md §F.21,
|
||||
* added 2026-08-28): confirms whether ZUSE-AUTHENTICATE has actually run
|
||||
* this boot. No corresponding write access -- matches ZUSE-PUBKEY@'s own
|
||||
* read-only-window convention. */
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
Licensed under the StarForth License, Version 1.0
|
||||
*/
|
||||
|
||||
/* ttf_words.c — TrueType text entry point (FABRIC.md item 4.3.7e).
|
||||
/* ttf_words.c — TrueType text entry point (FABRIC-0.md item 4.3.7e).
|
||||
* Kernel-only; no-op on hosted builds. */
|
||||
|
||||
#include "include/ttf_words.h"
|
||||
|
||||
Reference in New Issue
Block a user