summaryrefslogtreecommitdiffstats
path: root/main.c
diff options
context:
space:
mode:
authorNiklas Halle <niklas@niklashalle.net>2020-04-28 11:50:23 +0200
committerNiklas Halle <niklas@niklashalle.net>2020-04-28 11:50:23 +0200
commit0cf88f665b00962e9fa93f0d52977c1437d034c9 (patch)
treee1fabd2009cd83d40ea34f5def8c7c8c7844b928 /main.c
parentb917ccf417c2f6299ce69f87415f54a6a752018a (diff)
downloadbetriebssysteme-0cf88f665b00962e9fa93f0d52977c1437d034c9.tar.gz
betriebssysteme-0cf88f665b00962e9fa93f0d52977c1437d034c9.zip
adapted dir structure to exercise modualities
Diffstat (limited to 'main.c')
-rw-r--r--main.c21
1 files changed, 0 insertions, 21 deletions
diff --git a/main.c b/main.c
deleted file mode 100644
index db72bf9..0000000
--- a/main.c
+++ /dev/null
@@ -1,21 +0,0 @@
-#include <stdio.h>
-
-#if !defined(NDEBUG)
- #define TRACE(MSG) \
- fprintf(stderr, "%s\n", #MSG)
-#else
- #define TRACE(MSG)
-#endif
-
-int main(int argc, char *argv[]) {
- TRACE(pre assembly);
- __asm__("imul %%eax, %%eax"
- :
- :
- :
- );
- TRACE(post assembly);
- return 0;
-}
-
-/* https://www.ibiblio.org/gferg/ldp/GCC-Inline-Assembly-HOWTO.html */ \ No newline at end of file