Clarifications of EightBit library

This commit is contained in:
Adrian Conlon
2024-09-18 11:23:18 +01:00
parent 0621b9ed1d
commit 489b7b21e6
8 changed files with 5 additions and 27 deletions

View File

@@ -6,10 +6,6 @@ namespace EightBit
{
public class Chip : Device
{
protected Chip()
{
}
public static byte Bit(int which) => (byte)(1 << which);
public static byte Bit(byte which) => Bit((int)which);