Ecalls
Jupiter currently supports a total of 26 environment calls through ecall
instruction. To use an environment call, load the ecall code into register a0
and load any arguments into a1
- a7
or fa0
-fa7
(floating-point) registers.
Print Int
Prints integer in register a1
.
Example
Ecall Code
a0
= 1
Arguments
a1
= integer to print
Print Float
Prints float in register fa0
.
Example
Ecall Code
a0
= 2
Arguments
fa0
= float to print
Print String
Prints null-terminated string whose address is in register a1
.
Example
Ecall Code
a0
= 4
Arguments
a1
= null-terminated string address
Read Int
Reads an integer from stdin
and stores the result in register a0
.
Example
Ecall Code
a0
= 5
Arguments
none
Read Float
Reads a float from stdin
and stores the result in register fa0
.
Example
Ecall Code
a0
= 6
Arguments
none
Read String
It reads up to length - 1
characters into a buffer whose address is in a1
and terminates the string with a null
byte. Buffer size has to be at least length
bytes.
Example
Ecall Code
a0
= 8
Arguments
a1
= buffer addressa2
= buffer length
Sbrk
Stores a pointer to a block of memory containing n
additional bytes in register a0
. This pointer is word aligned.
Example
Ecall Code
a0
= 9
Arguments
a1
= number of bytes to reserve
Exit
Stops a program from running.
Example
Ecall Code
a0
= 10
Arguments
none
Print Char
Prints a character whose ascii code is in register a1
.
Example
Ecall Code
a0
= 11
Arguments
a1
= ascii code to print
Read Char
Reads a character from stdin
and stores the ascii code in register a0
.
Example
Ecall Code
a0
= 12
Arguments
none
Open
Opens a new file and obtains its file descriptor. Stores the file descriptor for the new file in register a0
. The file descriptor returned is always the smallest integer greater than zero that is still available. If a negative value is returned, then there was an error opening the file. Maximum number of open files: 32.
Example
Ecall Code
a0
= 13
Arguments
a1
= pathname addressa2
= open flags
Open Flags
Read
Reads data into a buffer whose address is in register a2
. Stores the number of bytes that were read in register a0
. If value is negative, then an error occurred. The buffer size should be greater or equal to the number bytes to read.
Example
Ecall Code
a0
= 14
Arguments
a1
= file descriptora2
= buffer addressa3
= number of bytes to read
Write
Writes data out of a buffer whose address is in register a2
. Stores the number of bytes that were written in register a0
. If value is negative, then an error occurred.
Example
Ecall Code
a0
= 15
Arguments
a1
= file descriptora2
= buffer addressa3
= number of bytes to write
Close
Close an open file descriptor. Stores a 0 upon success in register a0
, and a -1 upon failure.
Example
Ecall Code
a0
= 16
Arguments
a1
= file descriptor
Exit2
Stops the program from running and takes an argument, which is the value that Jupiter uses in its call on exit.
Example
Ecall Code
a0
= 17
Arguments
a1
= exit status code
Lseek
Changes the location of the read/write pointer of a file descriptor. The location can be set either in absolute or relative terms.
Example
Ecall Code
a0
= 18
Arguments
a1
= file descriptora2
= offset of the pointer (measured in bytes)a3
= method in which the offset is to be interpreted (relative, absolute, etc.).
Sleep
Causes the Jupiter Java thread to sleep for (at least) the specified number of milliseconds in register a1
. This timing will not be precise, as the Java implementation will add some overhead.
Example
Ecall Code
a0
= 19
Arguments
a1
= number of milliseconds
CWD
Stores the current working directory in a buffer whose address is in register a1
.
Example
Ecall Code
a0
= 20
Arguments
a1
= buffer address
Time
Stores the system time. a0
contains the low order 32 bits of system time and a1
high order 32 bits of system time.
Example
Ecall Code
a0
= 21
Arguments
none
Print Hex
Prints integer in register a1
in hex representation. Displayed value is 8 hexadecimal digits, left-padding with zeroes if necessary.
Example
Ecall Code
a0
= 22
Arguments
a1
= integer to print
Print Binary
Prints integer in register a1
in binary representation. Displayed value is 32 binary digits, left-padding with zeroes if necessary.
Example
Ecall Code
a0
= 23
Arguments
a1
= integer to print
Print Unsigned
Prints integer in register a1
as a 32-bit unsigned value.
Example
Ecall Code
a0
= 23
Arguments
a1
= integer to print
Set Seed
Sets the seed of the corresponding underlying Java pseudo-random number generator.
Example
Ecall Code
a0
= 25
Arguments
a1
= seed
Random Int
Stores the next pseudorandom, uniformly distributed, int value from the random number generator's sequence, in register a0
.
Example
Ecall Code
a0
= 26
Arguments
none
Random Int Range
Stores the next pseudorandom, uniformly distributed, int value from the random number generator's sequence, in register a0
. The next pseudorandom value will be in [a1
, a2
] range.
Example
Ecall Code
a0
= 27
Arguments
a1
= lower bound of rangea2
= upper bound of range
Random Float
Stores the next pseudorandom, uniformly distributed, float value in the range [0.0, 1.0] from the random number generator's sequence, in register a0
.
Example
Ecall Code
a0
= 28
Arguments
none
Last updated