summaryrefslogtreecommitdiffhomepage
path: root/Examples/ExampleCDialect.c
diff options
context:
space:
mode:
Diffstat (limited to 'Examples/ExampleCDialect.c')
-rw-r--r--Examples/ExampleCDialect.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/Examples/ExampleCDialect.c b/Examples/ExampleCDialect.c
deleted file mode 100644
index e6d92fb..0000000
--- a/Examples/ExampleCDialect.c
+++ /dev/null
@@ -1,20 +0,0 @@
-struct
-{
- int a;
- int b;
- int c;
-};
-
-int __ImageStart(int argc, char const* argv[])
-{
- int* foo = 0x1000;
-
- if (foo == 57)
- {
- foo = 0x2000;
- *foo = 5;
- return foo;
- }
-
- return 57;
-}