-
- Notifications
You must be signed in to change notification settings - Fork 851
README.ES.md -> 01 & 02 #150
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
44893cf 5a35299 8ce77b5 a76dd17 e4225fd 033051e 48cbc92 eb2a88f afe4c2d 7349acc ac93ef5 0353949 e073b53 879a87a 6c13f9d File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,55 @@ | ||||||||||||||
| # Tutorial 01 - Esperar para siempre | ||||||||||||||
| | ||||||||||||||
| ## tl;dr | ||||||||||||||
| | ||||||||||||||
| * Se configura la estructura que tendrá el proyecto. | ||||||||||||||
| ||||||||||||||
| * Se configura la estructura que tendrá el proyecto. | |
| * Se configura la estructura que tiene el proyecto. |
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| * El archivo `Makefile` selecciona: | |
| * El archivo `Makefile` permite ejecutar: |
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| * `clippy` | |
| * `clean` | |
| * `clippy`: Analiza el código y sugiere mejoras. | |
| * `clean`: Elimina todos los archivos generados durante la compilación, etc. |
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| * `readelf`: Inspeccionar la salida de `ELF`. | |
| * `readelf`: Inspecciona el archivo `ELF` de salida. |
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| * El script enlazador específico de `BSP` llamado `link.ld`. | |
| * El script para enlazado específico para la `BSP` llamado `link.ld`. |
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| * `boot.s`: La función de ensamblador `__start()` que inicia `wfe` (Wait For Event / Esperar Por Un Evento), detiene todos los núcleos del procesador que están ejecutando `_start()`. | |
| * `boot.s`: La función de ensamblador `_start()` que inicia `wfe` (Wait For Event / Esperar Hasta Un Evento), detiene todos los núcleos del procesador que están ejecutando `_start()`. |
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| * Tenemos que definir una función `#[panic_handler]` para que el compilador no nos cause problemas. | |
| * Tenemos que definir una función que funcione como `#[panic_handler]` (manejador de pánico) para que el compilador no nos cause problemas. |
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| * Hazla una `unimplemented!()` porque se eliminará ya que no está siendo usada. | |
| * Hazla `unimplemented!()` porque se eliminará ya que no está siendo usada. |
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| Dentro de la carpeta del proyecto, ejecuta a QEMU y mira el núcleo del procesador hilado en `wfe`: | |
| Dentro de la carpeta del proyecto, ejecuta a QEMU y mira el núcleo del procesador ejecutando `wfe` en bucle: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.