https://github.com/jpvt/assembly
Repositório com códigos em Assembly
https://github.com/jpvt/assembly
Last synced: 8 months ago
JSON representation
Repositório com códigos em Assembly
- Host: GitHub
- URL: https://github.com/jpvt/assembly
- Owner: jpvt
- Created: 2020-08-16T03:07:35.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-16T03:16:23.000Z (almost 6 years ago)
- Last Synced: 2025-07-08T14:07:28.210Z (11 months ago)
- Language: Assembly
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Assembly
Repositório com códigos em Assembly desenvolvidos durante a graduação em Engenharia de Computação na UFPB
----
## Lista de Códigos:
1. [Torre de Hanoi]()
---
## Torre de Hanoi
Esse trabalho foi desenvolvido durante a disciplina Arquitetura de Computadores. Consiste em uma programa simples em Assembly x86 que resolve o problema da Torre de Hanoi. O código está comentado de maneira detalhada, sinta-se livre para checar e tentar tirar inspirações para seus projetos em Assembly :)
NOTA: Desenvolvi esse projeto no Sistema Operacional Linux Mint 18, em uma arquitetura de processador 64 bits.
### Instruções de Compilação:
* Compilar:
```
nasm -f elf32 hanoi.asm
```
* Link:
```
gcc -m32 -o hanoi hanoi.o
```
* Execução:
```
./hanoi
```
----
## Author
**João Pedro Vasconcelos**
:---:
`github.com/jpvt`
*Computer Engineering undergrad student* at Universidade Federal da Paraíba
Hey, I'm João Pedro. (Since it's a complicated name to pronounce in english, you can call me JP)
I'm from São Paulo, Brazil. Though, I have spent most of my life where I currently live João Pessoa, Brazil.
I'm a Computer Engineering Undergrad student at the [Federal University of Paraíba](https://www.ufpb.br), and a Machine Learning Researcher at [ArIA - Artificial Intelligence Applications Laboratory](https://aria.ci.ufpb.br), where I've been studying Artificial Intelligence for the past months.
Outside of computer science, I enjoy learning random stuff, traveling, playing Dungeons & Dragons, and caffeine :)
**Background in:** C/C++, Python, Machine Learning, Data Analysis.
**Links:**
* [LinkedIn](https://www.linkedin.com/in/jpvt)
* [Personal Blog](https://jpvt.github.io)
---