Skip to content

Instantly share code, notes, and snippets.

View ifknot's full-sized avatar
💭
Get off my lawn!

ifknot ifknot

💭
Get off my lawn!
View GitHub Profile
@ifknot
ifknot / expr.asm
Created January 29, 2023 16:49 — forked from tanayseven/expr.asm
8087 assembly level program to evaluate (x+y)(a+b)/(a+b)(x-y), floating point
;8087 program to evaluate (x+y)(a+b)/(a+b)(x-y)
data segment
a dd 3.2
b dd 2.1
x dd 6.3
y dd 7.7
result dd ?
ends data
code segment