# Llamadas al Entorno

## Print Int

Imprime un entero que está en el registro `a1`.

#### Código Ecall

* `a0` = 1

#### Argumentos

* `a1` = un entero

#### Ejemplo

```
.globl __start

.text

__start:
    li a0, 1    # codigo ecall
    li a2, 10   # entero a imprimir
    ecall
```

## Print Float

## Print String

## Read Int

## Read Float

## Read String

## Sbrk

## Exit

## Print Char

## Read Char

## Open

## Read

## Write

## Close

## Exit2

## Lseek

## Sleep

## CWD

## Time

## Print Hex

## Print Binary

## Print Unsigned

## Set Seed

## Rand Int

## Rand Int Range


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://jupitersim.gitbook.io/jupiter/es/ensamblador/llamadas-al-entorno.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
