More .net 9 analysis changes

This commit is contained in:
Adrian Conlon 2024-10-12 12:24:42 +01:00
parent f6829f2ec0
commit 691b800d1a
8 changed files with 0 additions and 16 deletions

View File

@ -4,8 +4,6 @@
namespace EightBit
{
using System;
[Flags]
public enum Bits
{

View File

@ -4,8 +4,6 @@
namespace EightBit
{
using System;
public abstract class Bus : IMapper
{
private byte _data;

View File

@ -4,8 +4,6 @@
namespace EightBit
{
using System;
public class ClockedChip : Chip
{
protected ClockedChip()

View File

@ -4,8 +4,6 @@
namespace EightBit
{
using System;
public class Device
{
private PinLevel _powerLine;

View File

@ -4,8 +4,6 @@
namespace EightBit
{
using System;
public sealed class InputOutput
{
private readonly byte[] _input = new byte[0x100];

View File

@ -4,8 +4,6 @@
namespace EightBit
{
using System;
public abstract class IntelProcessor : LittleEndianProcessor
{
private static readonly int[] HalfCarryTableAdd = [0, 0, 1, 0, 1, 0, 1, 1];

View File

@ -4,8 +4,6 @@
namespace EightBit
{
using System;
public sealed class PortEventArgs(byte value) : EventArgs
{
public byte Port { get; } = value;

View File

@ -4,8 +4,6 @@
namespace EightBit
{
using System;
public abstract class Processor(Bus memory) : ClockedChip
{
#region Instruction execution events