aboutsummaryrefslogtreecommitdiff
path: root/cc/cc-test/src/i686.asm
diff options
context:
space:
mode:
Diffstat (limited to 'cc/cc-test/src/i686.asm')
-rw-r--r--cc/cc-test/src/i686.asm9
1 files changed, 9 insertions, 0 deletions
diff --git a/cc/cc-test/src/i686.asm b/cc/cc-test/src/i686.asm
new file mode 100644
index 0000000..6bf9676
--- /dev/null
+++ b/cc/cc-test/src/i686.asm
@@ -0,0 +1,9 @@
+.586
+.MODEL FLAT, C
+.CODE
+
+asm PROC
+ MOV EAX, 7
+ RET
+asm ENDP
+END