-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathMSX.java
More file actions
34 lines (29 loc) · 861 Bytes
/
MSX.java
File metadata and controls
34 lines (29 loc) · 861 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
30
31
32
33
34
/**
* Java Grinder
* Author: Michael Kohn
* Email: mike@mikekohn.net
* Web: https://www.mikekohn.net/
* License: GPL
*
* Copyright 2014-2016 by Michael Kohn
*
*/
/*
* MSX support by Giovanni Nunes - https://github.com/plainspooky
*/
package net.mikekohn.java_grinder;
abstract public class MSX
{
protected MSX() { }
public static void cls() { }
public static void beep() { }
public static void color(byte foreground, byte background, byte border) { }
public static void screen(byte mode) { }
public static void width(byte w) { }
public static void keyOn() { }
public static void keyOff() { }
public static void fillVRAM(int c, int len, int addr) { }
public static void copyVRAM(int len, int source, int dest) { }
public static void putChar(char c) { }
public static void setCursor(byte column, byte line) { }
}