Compare commits

..

No commits in common. "4020de85e2f457e497af74ccfa7731572c5afe93" and "8c9e218e86e2ac495ac3abb65157b5cc3c69599f" have entirely different histories.

2 changed files with 0 additions and 17 deletions

View File

@ -1,6 +0,0 @@
define NUM_MAX = 0xffff;
define NUM_MIN = 0x0000;
define NUM_S_MIN = 0x8000;
define NUM_S_MAX = 0x7fff;
define NULL = 0;
define ZIED = NUM_MAX;

View File

@ -1,11 +0,0 @@
main()
{
name = "define";
test_num_s(NUM_MAX, 0 - 1, "NUM_MAX");
test_num_s(NUM_S_MAX, 0xffff / 2, "NUM_S_MAX");
test_num_s(NUM_MIN, 0, "NUM_MAX");
test_num_s(NUM_S_MIN, 0xffff / 2 + 1, "NUM_S_MAX");
test_num_s(NULL, 0, "NULL");
test_num_s(ZIED, NUM_MAX, "ZIED");
}