This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | # ------- Jogo de Damas em Assembly ------- | |
| # Curso: Bacharelado em Ciência da Computação | |
| # Disciplina: Arquitetura de Computadores II | |
| # Autores: Willian R. Schuck, Kimberly Geremia | |
| .data | |
| tabuleiro: .space 64*4 | |
| atual: .space 4 | |
| anterior: .space 4 | |
| brancasJogam:.asciiz" Brancas Jogam\n" |