-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
72e36bd
commit 5b1362c
Showing
6 changed files
with
46 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
[Read this document in English](mips-doc.md) | ||
|
||
# MIPS32 para o EGG | ||
|
||
A implementação de MIPS32 para o EGG usa a sintaxe de Assembly padrão descrita | ||
no [README](README-pt.md). | ||
|
||
Para realizar uma chamada (_environment call_), o número dela é colocado no | ||
registrador `v0` e os argumentos nos registradores `a0` e `a1`. | ||
|
||
Uma instrução `break` realiza a chamada BREAK. | ||
|
||
O programa montado é carregado no endereço `0` e o `pc` é inicializado em `0`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
[Ler esse documento em português](mips-doc-pt.md) | ||
|
||
# MIPS32 for EGG | ||
|
||
The MIPS32 implementation for EGG uses the standard Assembly syntax described in | ||
the [README](README.md). | ||
|
||
Environment call numbers are placed in the `v0` register, and arguments are | ||
placed in `a0` and `a1`. | ||
|
||
An `break` instruction will perform a BREAK call. | ||
|
||
The assembled program is loaded at the address `0` on the machine startup, and | ||
the `pc` register is set to `0`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters