Integrate Register Level Programming and add counter source selection

r1196 | dcl | 2006-10-26 13:09:31 +1000 (Thu, 26 Oct 2006) | 2 lines
This commit is contained in:
Douglas Clowes
2006-10-26 13:09:31 +10:00
parent 4a74ec3404
commit 4f6054af3a
9 changed files with 704 additions and 113 deletions

View File

@@ -119,7 +119,7 @@ int main(int argc, char* argv[])
return usage(argc, argv, "no port");
if (isdigit(argv[idx][0]))
{
port = 10 * (atoi(argv[idx]) / 10);
port = atoi(argv[idx]);
++idx;
}
else