aboutsummaryrefslogtreecommitdiff
path: root/X64.hs
diff options
context:
space:
mode:
Diffstat (limited to 'X64.hs')
-rw-r--r--X64.hs4
1 files changed, 3 insertions, 1 deletions
diff --git a/X64.hs b/X64.hs
index 66a9605..42a8857 100644
--- a/X64.hs
+++ b/X64.hs
@@ -49,7 +49,9 @@ data Ins
| RET
deriving (Show, Eq)
-data Asm = Asm [(String, [Ins])]
+type Func = (String, [Ins])
+
+data Asm = Asm [Func]
deriving (Show, Eq)