1
0
mirror of https://github.com/livingcomputermuseum/UniBone.git synced 2026-02-23 07:32:58 +00:00

Test "MultiArb": parallel INTR and DMA of DL11,RL11,RK11.

Also MSCP IOX.
This commit is contained in:
Joerg Hoppe
2019-09-02 15:46:54 +02:00
parent cc42d60409
commit 92714c1ebe
78 changed files with 1325 additions and 6041 deletions

View File

@@ -98,13 +98,14 @@ static int inputline_internal(char *line) {
printf("<<< %s\n", line + 7);
return 1;
} else if (!strncasecmp(line, ".input", 6)) {
char buffer[100] ;
char buffer[100];
printf("<<< Press ENTER to continue.\n");
// flush stuff on stdin. (Eclipse remote debugging)
while (os_kbhit()) ;
fgets(buffer, sizeof(buffer), stdin) ;
return 1 ;
while (os_kbhit())
;
fgets(buffer, sizeof(buffer), stdin);
return 1;
} else if (!strncasecmp(line, ".end", 3)) {
// close input file
fclose(inputline_file);

View File

@@ -76,6 +76,8 @@ public:
logger->log(this, LL_INFO, __FILE__, __LINE__, __VA_ARGS__)
#define DEBUG(...) \
logger->log(this, LL_DEBUG, __FILE__, __LINE__, __VA_ARGS__)
// disables a DEBUG
#define _DEBUG(...)
#endif // _LOGSOURCE_HPP_