mirror of
https://github.com/livingcomputermuseum/ContrAlto.git
synced 2026-02-05 07:55:03 +00:00
111 lines
2.9 KiB
C#
111 lines
2.9 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Contralto.CPU
|
|
{
|
|
//
|
|
// This implements the stripped-down version of the 74181 ALU
|
|
// that the Alto exposes to the microcode, and nothing more.
|
|
//
|
|
static class ALU
|
|
{
|
|
static ALU()
|
|
{
|
|
Reset();
|
|
}
|
|
|
|
public static void Reset()
|
|
{
|
|
_carry = 0;
|
|
}
|
|
|
|
public static int Carry
|
|
{
|
|
get { return _carry; }
|
|
}
|
|
|
|
public static ushort Execute(AluFunction fn, ushort bus, ushort t, int skip)
|
|
{
|
|
int r = 0;
|
|
switch (fn)
|
|
{
|
|
case AluFunction.Bus:
|
|
_carry = 0; // M = 1
|
|
r = bus;
|
|
break;
|
|
|
|
case AluFunction.T:
|
|
_carry = 0; // M = 1
|
|
r= t;
|
|
break;
|
|
|
|
case AluFunction.BusOrT:
|
|
_carry = 0; // M = 1
|
|
r = (bus | t);
|
|
break;
|
|
|
|
case AluFunction.BusAndT:
|
|
case AluFunction.AluBusAndT:
|
|
_carry = 0; // M = 1
|
|
r = (bus & t);
|
|
break;
|
|
|
|
case AluFunction.BusXorT:
|
|
_carry = 0; // M = 1
|
|
r = (bus ^ t);
|
|
break;
|
|
|
|
case AluFunction.BusPlus1:
|
|
r = bus + 1;
|
|
_carry = (r > 0xffff) ? 1 : 0;
|
|
break;
|
|
|
|
case AluFunction.BusMinus1:
|
|
r = bus - 1;
|
|
_carry = (r < 0) ? 1 : 0;
|
|
break;
|
|
|
|
case AluFunction.BusPlusT:
|
|
r = bus + t;
|
|
_carry = (r > 0xffff) ? 1 : 0;
|
|
break;
|
|
|
|
case AluFunction.BusMinusT:
|
|
r = bus - t;
|
|
_carry = (r < 0) ? 1 : 0;
|
|
break;
|
|
|
|
case AluFunction.BusMinusTMinus1:
|
|
r = bus - t - 1;
|
|
_carry = (r < 0) ? 1 : 0;
|
|
break;
|
|
|
|
case AluFunction.BusPlusTPlus1:
|
|
r = bus + t + 1;
|
|
_carry = (r > 0xffff) ? 1 : 0;
|
|
break;
|
|
|
|
case AluFunction.BusPlusSkip:
|
|
r = bus + skip;
|
|
_carry = (r > 0xffff) ? 1 : 0;
|
|
break;
|
|
|
|
case AluFunction.BusAndNotT:
|
|
r = bus & (~t);
|
|
_carry = 0;
|
|
break;
|
|
|
|
default:
|
|
throw new InvalidOperationException(String.Format("Unhandled ALU function {0}", fn));
|
|
}
|
|
|
|
return (ushort)r;
|
|
}
|
|
|
|
private static int _carry;
|
|
}
|
|
}
|