diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-06-18 11:40:48 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-06-18 11:40:48 +0300 |
commit | b85bf25e97e771cbeefce255693035463974f320 (patch) | |
tree | 163609906d278b03d454d3e5ad489db875c5dbf2 /CODECONVENTIONS.md | |
parent | 2474c2ae94d686e6ef58c5811897adc7f1bc098c (diff) | |
download | micropython-b85bf25e97e771cbeefce255693035463974f320.tar.gz micropython-b85bf25e97e771cbeefce255693035463974f320.zip |
CODECONVENTIONS.md: 16-bit ports exist now.
Diffstat (limited to 'CODECONVENTIONS.md')
-rw-r--r-- | CODECONVENTIONS.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CODECONVENTIONS.md b/CODECONVENTIONS.md index 1af06b7e67..bcbea2ca0a 100644 --- a/CODECONVENTIONS.md +++ b/CODECONVENTIONS.md @@ -39,9 +39,9 @@ Header files: Type names and declarations: - When defining a type, put '_t' after it. -Integer types: Micro Python runs on 32 and 64 bit machines (and one day -maybe 16 bit), so it's important to use the correctly-sized (and signed) -integer types. The general guidelines are: +Integer types: Micro Python runs on 16, 32, and 64 bit machines, so it's +important to use the correctly-sized (and signed) integer types. The +general guidelines are: - For most cases use mp_int_t for signed and mp_uint_t for unsigned integer values. These are guaranteed to be machine-word sized and therefore big enough to hold the value from a Micro Python small-int |