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
module Main exposing (..) | |
import Browser exposing (Document, UrlRequest) | |
import Browser.Navigation exposing (Key) | |
import Url exposing (Url) | |
type alias Flags = () | |
type alias Model = () | |
type alias Msg = () |
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
.data | |
buffer: .space 65536 | |
memory: .space 256 | |
.text | |
main: | |
la $a0, buffer # Get the source code to execute | |
li $a1, 65536 | |
li $v0, 8 | |
syscall | |
la $a0, memory # Initialize memory |