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:
@@ -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);
|
||||
|
||||
@@ -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_
|
||||
|
||||
Reference in New Issue
Block a user