mclangc/include/io.mcl

51 lines
1.3 KiB
Plaintext
Raw Normal View History

2023-03-20 14:13:34 +00:00
// Write to a file descriptor using the SYS_write syscall
// args: [buff_size, buff_ptr, fd]
// @arg buff_size: Int - number of bytes to write
// @arg buff_ptr: Ptr - pointer to the buffer to write
// @arg fd: Int - file descriptor
2023-03-20 14:13:34 +00:00
// @ret Int
fn write with int ptr int returns int then
2023-03-20 14:13:34 +00:00
SYS_write syscall3
done
2023-03-20 14:13:34 +00:00
// Write to a file descriptor using the SYS_write syscall
// args: [buff_size, buff_ptr, fd]
// @arg buff_size: Int - number of bytes to write
// @arg buff_ptr: Ptr - pointer to the buffer to write
// @arg fd: Int - file descriptor
// @ret Int
fn read with int ptr int returns int then
SYS_read syscall3
done
2023-03-20 14:13:34 +00:00
// Print a string to STDOUT
// args: [str_size, str_ptr]
// @arg buff_size: Int - number of bytes to write
// @arg buff_ptr: Ptr - pointer to the buffer to write
2023-03-20 14:13:34 +00:00
// @ret NULL
fn puts with int ptr returns void then
2023-03-20 14:13:34 +00:00
STDOUT write drop
done
2023-03-20 14:13:34 +00:00
// Print a string to STDERR
// args: [str_size, str_ptr]
// @arg buff_size: Int - number of bytes to write
// @arg buff_ptr: Ptr - pointer to the buffer to write
2023-03-20 14:13:34 +00:00
// @ret NULL
fn eputs with int ptr returns void then
2023-03-20 14:13:34 +00:00
STDOUT write drop
done
2023-03-20 14:13:34 +00:00
// TODO: make putc and eputc after we make local mem
// Exit the program with exit_code
// args: [exit_code]
// @arg exit_code: Int
// @ret NULL/NEVER
fn exit with int returns void then
2023-03-20 14:13:34 +00:00
SYS_exit syscall1 drop
done
2023-03-20 14:13:34 +00:00