EightBitNet/Fuse/TestEvent.cs
Adrian Conlon 9550ed57be Add a .net Fuse test suite for the Z80 core (one "unexpected" result).
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
2019-08-13 22:24:04 +01:00

78 lines
2.0 KiB
C#

// <copyright file="TestEvent.cs" company="Adrian Conlon">
// Copyright (c) Adrian Conlon. All rights reserved.
// </copyright>
namespace Fuse
{
using System;
public class TestEvent
{
private int cycles;
public int Cycles => this.cycles;
public string Specifier { get; private set; }
public ushort Address { get; private set; } = (ushort)EightBit.Mask.Mask16;
public byte Value { get; private set; } = (byte)EightBit.Mask.Mask8;
public bool TryParse(Lines lines)
{
if (lines == null)
{
throw new ArgumentNullException(nameof(lines));
}
var returned = this.TryParseLine(lines.ReadLine());
if (!returned)
{
lines.UnreadLine();
}
return returned;
}
private bool TryParseLine(string line)
{
var split = line.Split(new char[] { ' ', '\t' }, StringSplitOptions.RemoveEmptyEntries);
return this.TryParseLine(split);
}
private bool TryParseLine(string[] tokens)
{
if (!int.TryParse(tokens[0], out this.cycles))
{
return false;
}
this.Specifier = tokens[1];
switch (this.Specifier)
{
case "MR":
case "MW":
this.Address = Convert.ToUInt16(tokens[2], 16);
this.Value = Convert.ToByte(tokens[3], 16);
break;
case "MC":
case "PC":
this.Address = Convert.ToUInt16(tokens[2], 16);
break;
case "PR":
case "PW":
this.Address = Convert.ToUInt16(tokens[2], 16);
this.Value = Convert.ToByte(tokens[3], 16);
break;
default:
return false;
}
return true;
}
}
}