diff os9/mc09/README @ 99:92ed427b7f7d

add micro-c by mohta
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Thu, 27 Dec 2018 11:01:16 +0900
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/os9/mc09/README	Thu Dec 27 11:01:16 2018 +0900
@@ -0,0 +1,11 @@
+Micro-C is a subset of C compiler. It compiles everything
+in 1 pass.
+
+Major limitations compared to standard C compilers are:
+	1) no float or double
+	2) no bit field
+	3) limited pre-processor capability (use 'cpp' of UNIX if necessary)
+	4) no real long (long is only 2 bytes long)
+
+Non standard features:
+	1) #asm and #endasm construction (dangerous, use only after ';' or '}')