An open API service indexing awesome lists of open source software.

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

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)

---