aboutsummaryrefslogtreecommitdiff
path: root/bigfloat.h
diff options
context:
space:
mode:
authorB. Watson <yalhcru@gmail.com>2016-01-18 14:28:59 -0500
committerB. Watson <yalhcru@gmail.com>2016-01-18 14:28:59 -0500
commitcf513e685ecfab5acfc5cf3ea0b9e67370915da8 (patch)
tree52cdf9694036efed5c571baa5705c2daf3175af8 /bigfloat.h
parent807708211e2206d3b21c9c6353203ee40bdfe30b (diff)
downloadtaipan-cf513e685ecfab5acfc5cf3ea0b9e67370915da8.tar.gz
fix big_negate, allow lowercase z in firm name, tighten up bigfloat.s
Diffstat (limited to 'bigfloat.h')
-rw-r--r--bigfloat.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/bigfloat.h b/bigfloat.h
index 359438d..1976908 100644
--- a/bigfloat.h
+++ b/bigfloat.h
@@ -15,16 +15,16 @@
/* bignum 100, used for score calculations in final_stats() */
#define BIG_100 { 0x41, 0x01, 0x00, 0x00, 0x00, 0x00 }
-/* one thousand, one million, one hundred million */
+/* one thousand, one million, one billion, one trillion
+ used by cprintfancy_big() */
#define BIG_1K { 0x41, 0x10, 0x00, 0x00, 0x00, 0x00 }
#define BIG_1M { 0x43, 0x01, 0x00, 0x00, 0x00, 0x00 }
-#define BIG_100M { 0x44, 0x01, 0x00, 0x00, 0x00, 0x00 }
-
-/* 10 million, one billion, one trillion */
-#define BIG_10M { 0x43, 0x10, 0x00, 0x00, 0x00, 0x00 }
#define BIG_1B { 0x44, 0x10, 0x00, 0x00, 0x00, 0x00 }
#define BIG_1T { 0x46, 0x01, 0x00, 0x00, 0x00, 0x00 }
/* max value for a ulong, 2**32-1 */
#define BIG_MAX_ULONG { 0x44, 0x42, 0x94, 0x96, 0x72, 0x95 }
+/* unused. */
+// #define BIG_100M { 0x44, 0x01, 0x00, 0x00, 0x00, 0x00 }
+// #define BIG_10M { 0x43, 0x10, 0x00, 0x00, 0x00, 0x00 }