summaryrefslogtreecommitdiffstats
path: root/test/sdcc18/test18.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/sdcc18/test18.c')
-rw-r--r--test/sdcc18/test18.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/sdcc18/test18.c b/test/sdcc18/test18.c
new file mode 100644
index 0000000..00dc375
--- /dev/null
+++ b/test/sdcc18/test18.c
@@ -0,0 +1,14 @@
+#include <pic18f452.h>
+
+void main(void)
+{
+ float f = TRISA;
+ int a = TRISB;
+ LATA = 0xFF;
+ LATAbits.LATA1 = 0;
+// UIE = 0x55;
+ f /= a;
+ a = f;
+ TRISA = a;
+ while(1);
+}