mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-04-16 02:41:01 +00:00
More .net 9 analysis changes
This commit is contained in:
parent
f6829f2ec0
commit
691b800d1a
@ -4,8 +4,6 @@
|
||||
|
||||
namespace EightBit
|
||||
{
|
||||
using System;
|
||||
|
||||
[Flags]
|
||||
public enum Bits
|
||||
{
|
||||
|
@ -4,8 +4,6 @@
|
||||
|
||||
namespace EightBit
|
||||
{
|
||||
using System;
|
||||
|
||||
public abstract class Bus : IMapper
|
||||
{
|
||||
private byte _data;
|
||||
|
@ -4,8 +4,6 @@
|
||||
|
||||
namespace EightBit
|
||||
{
|
||||
using System;
|
||||
|
||||
public class ClockedChip : Chip
|
||||
{
|
||||
protected ClockedChip()
|
||||
|
@ -4,8 +4,6 @@
|
||||
|
||||
namespace EightBit
|
||||
{
|
||||
using System;
|
||||
|
||||
public class Device
|
||||
{
|
||||
private PinLevel _powerLine;
|
||||
|
@ -4,8 +4,6 @@
|
||||
|
||||
namespace EightBit
|
||||
{
|
||||
using System;
|
||||
|
||||
public sealed class InputOutput
|
||||
{
|
||||
private readonly byte[] _input = new byte[0x100];
|
||||
|
@ -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];
|
||||
|
@ -4,8 +4,6 @@
|
||||
|
||||
namespace EightBit
|
||||
{
|
||||
using System;
|
||||
|
||||
public sealed class PortEventArgs(byte value) : EventArgs
|
||||
{
|
||||
public byte Port { get; } = value;
|
||||
|
@ -4,8 +4,6 @@
|
||||
|
||||
namespace EightBit
|
||||
{
|
||||
using System;
|
||||
|
||||
public abstract class Processor(Bus memory) : ClockedChip
|
||||
{
|
||||
#region Instruction execution events
|
||||
|
Loading…
x
Reference in New Issue
Block a user