launcher.rom and portable wc

This commit is contained in:
sejo 2022-11-13 14:25:31 +01:00
parent cbb479c16a
commit d74942e0e5
2 changed files with 5 additions and 5 deletions

View File

@ -199,7 +199,7 @@ si todo fue bien, verás varios mensajes en la terminal y una pequeña ventana c
* F1 itera entre diferentes niveles de zoom
* F2 muestra el debugger en pantalla
* F3 toma una captura de pantalla de la ventana
* F4 carga un boot.rom que permite navegar y abrir roms en el directorio actual
* F4 carga una rom de inicio (launcher.rom) que permite navegar y abrir roms en el directorio actual
## usando el toolchain
@ -342,14 +342,14 @@ Assembled bin/hola.rom(5 bytes), 0 labels, 0 macros.
podemos confirmarlo usando el programa wc (word count):
```
$ wc --bytes hola.rom
$ wc -c hola.rom
5 hola.rom
```
para le curiose (¡como tú!), podemos usar una herramienta como hexdump para ver sus contenidos:
```
$ hexdump -C bin/hola.rom
$ hexdump -C hola.rom
00000000 80 68 80 18 17 |.h...|
00000005
```

View File

@ -202,7 +202,7 @@ take a look at the available demos! (or not, and let's start programming ours!)
* F1 circles between different zoom levels
* F2 shows the on-screen debugger
* F3 takes a screenshot of the window
* F4 loads a boot.rom that lets you browse and open roms in the current directory
* F4 loads a launcher.rom that lets you browse and open roms in the current directory
## learn-uxn site
@ -319,7 +319,7 @@ when we assembled our program, we saw that it was 5 bytes in size.
we can confirm it using the wc (word count) program:
```
$ wc --bytes hello.rom
$ wc -c hello.rom
5 hello.rom
```