Adds fread(), fseek()

This commit is contained in:
2025-07-28 10:05:16 +02:00
parent a8bc8cfa2e
commit a803a216b1
4 changed files with 163 additions and 5 deletions

View File

@@ -75,3 +75,7 @@ section .rodata
S_IFIFO equ 0010000q ; FIFO
S_IFLNK equ 0120000q ; Symbolic link
S_IFSOCK equ 0140000q ; Socket
; Seek options
SEEK_SET equ 0
SEEK_CUR equ 1
SEEK_END equ 2