-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathSXB.java
More file actions
30 lines (26 loc) · 740 Bytes
/
SXB.java
File metadata and controls
30 lines (26 loc) · 740 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/**
* Java Grinder
* Author: Michael Kohn
* Email: mike@mikekohn.net
* Web: https://www.mikekohn.net/
* License: GPLv3
*
* Copyright 2014-2022 by Michael Kohn
*
* Western Design Center SXB board by Joe Davisson
*
*/
package net.mikekohn.java_grinder;
abstract public class SXB
{
protected SXB() { }
// terminal interface routines
public static char getChar() { return 0; }
public static void putChar(char c) { }
public static int getInt() { return 0; }
public static void putInt(int n) { }
public static void getString() { }
public static void putString(String text) { }
public static void controlTones(int freq1, int freq2,
boolean enable1, boolean enable2) { }
}