summaryrefslogtreecommitdiffhomepage
path: root/Examples/ExampleCDialect.c
diff options
context:
space:
mode:
authorAmlal <amlalelmahrouss@icloud.com>2024-07-28 16:12:39 +0000
committerAmlal <amlalelmahrouss@icloud.com>2024-07-28 16:12:39 +0000
commit6f54c8fb68063ffac8ff88bb146914df28cb8134 (patch)
treeb1fa96a4211a1563b3ebc7724aa3c281ea8fa56f /Examples/ExampleCDialect.c
parent7a6ac1d9cd3128a9ef96bf675a06963a617b5673 (diff)
parent231899b44a7294bb968c2a930c97f76990376f41 (diff)
Merged in MHR-36 (pull request #6)
MHR-36
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;
-}