Skip to content

Instantly share code, notes, and snippets.

View nmf2's full-sized avatar

Nathan Martins Freire nmf2

  • Beyond Company
  • Recife, Brazil
View GitHub Profile
@nmf2
nmf2 / code.asm
Last active December 5, 2017 16:00
Resolução IHS 2015 Q2
; code.asm
SECTION .data
vol: dq 0
txt: db 10,"vol: %f", 10, 0
SECTION .text
global cone
extern printf
cone:
enter 0, 0