mclangc/include/io.mcl

51 lines
1.2 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
2023-04-04 14:24:58 +00:00
fn write do
2023-03-20 14:13:34 +00:00
SYS_write syscall3
end
// 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
2023-04-04 14:24:58 +00:00
fn read do
SYS_read syscall3
end
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
2023-04-04 14:24:58 +00:00
fn puts do
2023-03-20 14:13:34 +00:00
STDOUT write drop
end
// 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
2023-04-04 14:24:58 +00:00
fn eputs do
2023-03-20 14:13:34 +00:00
STDOUT write drop
end
// 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
2023-04-04 14:24:58 +00:00
fn exit do
2023-03-20 14:13:34 +00:00
SYS_exit syscall1 drop
end