aboutsummaryrefslogtreecommitdiff
path: root/mirai/common
AgeCommit message (Collapse)AuthorFilesLines
2026-02-24Bunch of stuff moved as .old for new arch changeBobby45-729/+0
2026-02-24commit for arch changeBobby1-0/+1
2026-02-23feat: Enhance Kata memory management with stack growth support and ↵Bobby1-2/+3
additional user stack properties
2026-02-23fix: dynamic attachments in kataBobby2-2/+2
2026-02-23fix: Update MAX_LOCATION_LENGTH to 128 and adjust limits for Katas and ↵Bobby2-11/+8
Attachments
2026-02-20fix: Correct KERNEL_MAP_END value and update MAX_LOCATION_LENGTH documentationBobby2-4/+4
2026-02-20feat: Refactor path handling to use location utilities and update related ↵Bobby6-28/+22
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-20feat: Implement CMOS/RTC and CPUID operations, add PIT driver, and enhance ↵Bobby4-0/+38
AFS with disk info retrieval
2026-02-15refactor: Modularize memory management constants and improve structureBobby3-0/+31
2026-02-15refactor: Modularize IDT and PIC handling, improve structure and organizationBobby2-0/+30
2026-02-15Refactor Kata Memory Management and SchedulerBobby3-0/+15
- Updated memory management in `memory.zig` to improve virtual buffer allocation and deallocation. - Removed `sensei.zig` and refactored scheduling logic into new files: `queue.zig`, `sensei.zig`, and `waker.zig`. - Introduced `attachment.zig` for managing attachments with new constants and limits. - Created `pool.zig` for managing the Kata pool, including creation and dissolution of Katas. - Enhanced `types.zig` to define new structures and enums for Katas and their states. - Improved context switching in `shift.zig` to streamline Kata execution state management. - Updated file references and imports across the codebase to reflect new structure.
2026-02-15refactor: Restructure ELF and Akiba format handling, modularize componentsBobby2-0/+27
2026-02-15Refactor Crimson Panic Handler and Exception ManagementBobby2-2/+9
- Renamed panic.zig to crimson.zig for clarity and restructured panic handling functions. - Moved exception handling logic from exceptions.zig to a new exception.zig file. - Updated imports across the codebase to reflect the new file structure. - Introduced a new types.zig file to define Context and ExceptionFrame structures. - Added formatting utilities in format.zig for better register and stack frame representation. - Implemented screen rendering functions in render.zig for displaying error messages and system state during panic. - Consolidated color definitions in colors.zig and added new constants for better readability. - Removed obsolete exception handling code and integrated it into the new structure.
2026-02-15Refactor Multiboot Integration and Enhance Terminal FunctionalityBobby8-42/+56
- Updated multiboot imports to use the new directory structure. - Refactored font handling to utilize new PSF constants and terminal limits. - Improved terminal implementation by integrating ASCII and color constants. - Introduced a new GDT implementation with proper segment definitions. - Added framebuffer and memory parsing for multiboot protocol. - Enhanced boot sequence with structured message handling and error reporting. - Established constants for terminal dimensions and boot limits. - Created a dedicated TSS implementation for task management.
2026-02-15refactor: Update stack entry structure and improve type handling in integer ↵Bobby1-0/+1
utilities
2026-02-15refactor: Simplify comments and remove redundant descriptions in constants filesBobby12-301/+15
2026-02-15Add drivers and constants for ATA, AHCI, PCI, Keyboard, Serial, and VGABobby12-0/+192
- Introduced ATA constants and limits for commands, status registers, and device signatures. - Added keyboard constants and limits for scancodes and buffer size. - Implemented PCI configuration constants and limits for device enumeration. - Created I/O port constants for serial communication and keyboard interaction. - Developed AHCI driver for SATA devices, including port operations and command handling. - Implemented ATA PIO block device driver for reading sectors. - Added PS/2 keyboard driver with scancode handling and input buffering. - Created serial port driver for outputting data and formatted printing. - Developed VGA text mode driver for character display and screen management.
2026-02-15Refactor AFS and GPT Filesystem ImplementationBobby1-57/+35
- Removed the old GPT partition table parser and replaced it with a new implementation in `mirai/fs/gpt/gpt.zig` that adheres to the latest standards. - Introduced a new AFS (Akiba File System) driver in `mirai/fs/afs/afs.zig`, including operations for reading, writing, and managing clusters and entries. - Added utilities for handling AFS locations, clusters, and cache operations in `mirai/fs/afs/location.zig`, `mirai/fs/afs/cluster.zig`, and `mirai/fs/afs/cache.zig`. - Implemented read and write operations for AFS in `mirai/fs/afs/read.zig` and `mirai/fs/afs/write.zig`, including functions for managing unit sizes and stack entries. - Introduced type definitions for AFS structures in `mirai/fs/afs/types.zig` and updated the existing types in `mirai/fs/gpt/types.zig`. - Added endian conversion utilities in `mirai/utils/bytes/endian.zig` to facilitate byte order handling. - Enhanced utility functions for converting integer types in `mirai/utils/types/int.zig`.
2026-02-15Refactor terminal graphics and video handlingBobby1-0/+42
- Updated terminal.zig to improve console output management with cursor and scrolling functionality. - Introduced new graphics constants in graphics.zig for better color and terminal configuration management. - Simplified framebuffer operations in video.zig by utilizing pixel utilities for pixel manipulation. - Removed obsolete file descriptor and location utilities to streamline the codebase. - Added pixel utilities for efficient pixel and framebuffer operations, including filling and clearing rectangles. - Enhanced character rendering and line management in terminal graphics.
2026-02-15feat: Add various invocations for file system and I/O operationsBobby14-0/+647
- Implemented `viewstack` invocation to list contents of a stack. - Created `attach` invocation for opening attachments with device and unit handling. - Added `getkeychar` invocation to read a single character from the keyboard. - Developed `mark` invocation to write to attachments with color support. - Introduced `seal` invocation to close attachments. - Implemented `view` invocation to read from attachments. - Added `wipe` invocation to clear the terminal screen. - Created `exit` invocation to dissolve a Kata and seal attachments. - Implemented `postman` invocation for letter passing between parent and child Katas. - Added `spawn` invocation to create new Katas from executables. - Implemented `wait` invocation to wait for child Katas to dissolve. - Added `yield` invocation to voluntarily give up CPU time to Sensei. - Introduced utility functions for location resolution and path handling. - Added memory copy and slice utilities for efficient data manipulation. - Implemented random number generation utilities. - Added string comparison utilities for easier string handling. - Introduced integer and pointer conversion utilities for type safety. - Implemented result handling utilities for invocation results.