Z80Flags constructor

Z80Flags(
  1. {int S = 0,
  2. int Z = 0,
  3. int Y = 0,
  4. int H = 0,
  5. int X = 0,
  6. int P = 0,
  7. int N = 0,
  8. int C = 0}
)

Constructs a new Z80Flags

Implementation

Z80Flags({
  this.S = 0,
  this.Z = 0,
  this.Y = 0,
  this.H = 0,
  this.X = 0,
  this.P = 0,
  this.N = 0,
  this.C = 0,
});