Implement some suggestions from the code analysis.

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon
2019-02-14 23:51:32 +00:00
parent 63db46a7bc
commit cf4e633034
6 changed files with 35 additions and 57 deletions
+1 -4
View File
@@ -16,10 +16,7 @@ namespace EightBit
public abstract byte Peek(ushort address);
public virtual ref byte Reference(ushort address)
{
throw new NotImplementedException();
}
public virtual ref byte Reference(ushort address) => throw new NotImplementedException();
public abstract int Load(FileStream file, int writeOffset = 0, int readOffset = 0, int limit = -1);