Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/racerxdl/asm2web
Código usado na live de Assembly for Noobs!
https://github.com/racerxdl/asm2web
Last synced: 10 days ago
JSON representation
Código usado na live de Assembly for Noobs!
- Host: GitHub
- URL: https://github.com/racerxdl/asm2web
- Owner: racerxdl
- License: apache-2.0
- Created: 2020-07-31T02:15:04.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-08-15T21:54:57.000Z (over 4 years ago)
- Last Synced: 2024-05-02T01:25:47.071Z (7 months ago)
- Language: Assembly
- Size: 36.1 KB
- Stars: 57
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Brincadeiras e ensinamentos de Assembly x86-64
Este é o resultado de livestreams feitas no canal [RacerXDL](https://twitch.tv/racerxdl)! Um artigo ainda será escrito sobre o conteúdo :D
Lista de Syscalls do Linux (64 bit): [https://filippo.io/linux-syscall-table/](https://filippo.io/linux-syscall-table/)
Lista de instruções e explicações x86-64: [http://faydoc.tripod.com/cpu/](http://faydoc.tripod.com/cpu/lodsb.htm)
Convenção de chamada x86-64: [https://courses.cs.washington.edu/courses/cse378/10au/sections/Section1_recap.pdf](https://courses.cs.washington.edu/courses/cse378/10au/sections/Section1_recap.pdf)
Tipos de dados no assembly: [https://www.tutorialspoint.com/assembly_programming/assembly_variables.htm](https://www.tutorialspoint.com/assembly_programming/assembly_variables.htm)
# Funções da libc
* **fread** [https://man7.org/linux/man-pages/man3/fread.3.html](https://man7.org/linux/man-pages/man3/fread.3.html)
* **fopen** [https://man7.org/linux/man-pages/man3/fopen.3.html](https://man7.org/linux/man-pages/man3/fopen.3.html)
* **printf** [https://man7.org/linux/man-pages/man3/printf.3.html](https://man7.org/linux/man-pages/man3/printf.3.html)
* **malloc** / **free** [https://man7.org/linux/man-pages/man3/malloc.3.html](https://man7.org/linux/man-pages/man3/malloc.3.html)# Videos das Livestreams
* [ASM4NOOBS - Parte 1](https://www.youtube.com/watch?v=3jrftX-GHgU) - Explicações sobre registradores e formatos de dados
* [ASM4NOOBS - Parte 2](https://www.youtube.com/watch?v=TVaTpjODUpo) - Codando Hello World
* [ASM4NOOBS - Parte 3](https://www.youtube.com/watch?v=Qp0z8glw16c) - Usando a libc no assebmly
* [ASM4NOOBS - Parte 4](https://www.youtube.com/watch?v=0jw7L7CC84s) - Aceitando uma conexão na porta 8081!
* [ASM4NOOBS - Parte 5](https://www.youtube.com/watch?v=mbT5RaI6pdw) - O SERVIDOR FUNCIONA!