another a2e adjustment and stack size output on interactive banner
This commit is contained in:
@@ -68,7 +68,7 @@
|
|||||||
|
|
||||||
/* Command buffer size in bytes */
|
/* Command buffer size in bytes */
|
||||||
#ifndef CMD_BUF_SIZE
|
#ifndef CMD_BUF_SIZE
|
||||||
#define CMD_BUF_SIZE 14000u
|
#define CMD_BUF_SIZE 13600u
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Maximum amount of CLT entries */
|
/* Maximum amount of CLT entries */
|
||||||
@@ -630,8 +630,8 @@ int main(int argc, char* argv[]) {
|
|||||||
#else /* VT100-compatible terminal init */
|
#else /* VT100-compatible terminal init */
|
||||||
printf("\033c");
|
printf("\033c");
|
||||||
#endif
|
#endif
|
||||||
printf("Welcome to Equi v" EQUI_VER " by Luxferre, 2022\nCLT: 0x%04X (%d bytes)\nGPD: 0x%04X (%d bytes)\nCommand buffer: 0x%04X (%d bytes)\nEqui ready\n\n> ",
|
printf("Welcome to Equi v" EQUI_VER " by Luxferre, 2022\nStack size: %d bytes\nLiteral stack size: %d bytes\nCLT: 0x%04X (%d bytes)\nGPD: 0x%04X (%d bytes)\nCommand buffer: 0x%04X (%d bytes)\nEqui ready\n\n> ",
|
||||||
ram.clt_start, ram.gpd_start - ram.clt_start, ram.gpd_start, ram.cmd_start - ram.gpd_start, ram.cmd_start, ram.cmd_size);
|
STACK_SIZE, LIT_STACK_SIZE, ram.clt_start, ram.gpd_start - ram.clt_start, ram.gpd_start, ram.cmd_start - ram.gpd_start, ram.cmd_start, ram.cmd_size);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* now, if necessary, convert the values that could be read by the program to big-endian */
|
/* now, if necessary, convert the values that could be read by the program to big-endian */
|
||||||
|
|||||||
Reference in New Issue
Block a user