Added important debugging program for me and maybe for others too...

This commit is contained in:
xolatile
2024-07-07 10:36:17 -04:00
parent 93fc219794
commit 744a605723
3 changed files with 52 additions and 4 deletions

View File

@ -60,8 +60,8 @@ static void print (form when,
/* */
place ((when != 0) && (size >= D8), (byte) ((data >> 0) & 0XFF));
place ((when != 0) && (size >= D16), (byte) ((data >> 8) & 0XFF));
place ((when != 0) && (size == D32), (byte) ((data >> 16) & 0XFF));
place ((when != 0) && (size == D32), (byte) ((data >> 24) & 0XFF));
place ((when != 0) && (size >= D32), (byte) ((data >> 16) & 0XFF));
place ((when != 0) && (size >= D32), (byte) ((data >> 24) & 0XFF));
}
static form valid (form data) { return ((data >= 0) && (data <= 15)); }