aboutsummaryrefslogtreecommitdiff
path: root/system/ash/ash.zig
AgeCommit message (Collapse)AuthorFilesLines
2026-02-24Bunch of stuff moved as .old for new arch changeBobby1-125/+0
2026-02-20feat: Refactor path handling to use location utilities and update related ↵Bobby1-18/+18
structures - Replaced path references with location in various modules for consistency. - Updated attachment management to use location instead of path. - Enhanced I/O operations to handle location parameters. - Removed deprecated path utilities and integrated location utilities. - Adjusted limits and parameters for kata and attachment management.
2026-02-15Make all binaries use library imports. Remove akiba library.Bobby1-85/+25
2026-02-15feat: Enhance command prompt to display current stack nameBobby1-2/+38
2026-02-13Refactor and enhance filesystem navigation and communication between KatasBobby1-33/+44
- Updated `mi.zig` to default target path to an empty string. - Improved context switching in `context.zig` by restoring registers from the context struct. - Enhanced `loader.zig` to inherit current location from the parent Kata. - Simplified `getkeychar.zig` by removing unnecessary serial import and error handling. - Added new invocations: `getlocation.zig` for retrieving current stack location and `postman.zig` for letter passing between Katas. - Introduced `setlocation.zig` to change current stack location with path resolution. - Created `nav.zig` for navigating the filesystem with commands to print current location or change it. - Added `nav.zon` for binary metadata. - Updated `limits.zig` to define maximum letter length. - Enhanced `ash.zig` to process navigation letters and improved command execution flow. - Updated syscall interface in `sys.zig` to handle variable arguments for invocations.
2026-02-13refactor: Improve stack viewing and argument handling with enhanced error ↵Bobby1-14/+53
reporting and alignment
2026-02-13refactor: Enhance process spawning with argument support and streamline ↵Bobby1-11/+7
entry points
2026-01-27feat: Remove echo and rd binaries; add mi stack viewer and viewstack syscallBobby1-8/+65
2026-01-23fix keypresses not appearing on terminal in ashBobby1-2/+3
2026-01-22feat: Implement keyboard input handling and shell functionalityBobby1-0/+45
- Added framebuffer initialization and retrieval functions in multiboot2.zig. - Integrated framebuffer support into the boot sequence. - Refactored keyboard driver to use a circular buffer for input and added blocking behavior for kata waiting on keyboard input. - Enhanced kata management to support blocking and waking katas based on keyboard input. - Introduced a new invocation for reading a character from the keyboard (getkeychar). - Implemented a simple shell (ash) that reads user input and echoes it back. - Updated syscall handling to include the new getkeychar invocation. - Improved memory management for loading programs and handling user/kernel stacks. - Added functionality to wake katas waiting for specific events, such as the dissolution of other katas.