(String err)
| 65 | |
| 66 | static void bad_usage() { bad("Invalid usage (use --help)"); } |
| 67 | static RuntimeException bad(String err) { |
| 68 | System.err.println("ERROR: "+err); |
| 69 | System.exit(1); |
| 70 | return new RuntimeException(err); |
| 71 | } |
| 72 | |
| 73 | static void target() { |
| 74 | System.out.print(TestC.CPU_PORT); |