c64- better VIC screen mode documentation

This commit is contained in:
saxxonpike 2012-11-06 06:42:22 +00:00
parent 877b95e3d5
commit c9c6cc4e9c
1 changed files with 6 additions and 0 deletions

View File

@ -850,31 +850,37 @@ namespace BizHawk.Emulation.Computers.Commodore64
}
}
// standard bitmap mode
private int Plot010(int offset)
{
return regs.BxC[0];
}
// multicolor bitmap mode
private int Plot011(int offset)
{
return regs.BxC[0];
}
// extra color text mode
private int Plot100(int offset)
{
return regs.BxC[0];
}
// invalid mode
private int Plot101(int offset)
{
return regs.BxC[0];
}
// invalid mode
private int Plot110(int offset)
{
return regs.BxC[0];
}
// invalid mode
private int Plot111(int offset)
{
return regs.BxC[0];