-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0180935
commit 6583ca2
Showing
9 changed files
with
13 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ | |
typedef ssize_t c3_zs; | ||
typedef uint64_t c3_d; | ||
typedef int64_t c3_ds; | ||
typedef uint32_t c3_w; | ||
typedef uint64_t c3_w; | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
matthew-levan
via email
Author
Contributor
|
||
typedef int32_t c3_ws; | ||
typedef uint16_t c3_s; | ||
typedef int16_t c3_ss; | ||
|
@@ -24,8 +24,8 @@ | |
typedef uint8_t c3_t; // boolean | ||
typedef uint8_t c3_o; // loobean | ||
typedef uint8_t c3_g; // 32-bit log - 0-31 bits | ||
typedef uint32_t c3_l; // little; 31-bit unsigned integer | ||
typedef uint32_t c3_m; // mote; also c3_l; LSB first a-z 4-char string. | ||
typedef uint64_t c3_l; // little; 31-bit unsigned integer | ||
typedef uint64_t c3_m; // mote; also c3_l; LSB first a-z 4-char string. | ||
|
||
/* Deprecated integers. | ||
*/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
I think this whole effort should start with an #ifdef VERE_64 -- unless there's a more advanced plan to hack your way through it without the ifdef first, then do a git diff and put the ifdef in.
Having the ifdef seems generally useful though, and likely easier to apply at the beginning than to retrofit later on.