Apply any analysis suggestions.

Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
This commit is contained in:
Adrian Conlon
2019-12-04 23:23:48 +00:00
parent 73d08fe7a7
commit 2becf0e220
4 changed files with 102 additions and 201 deletions

View File

@@ -66,8 +66,8 @@ namespace EightBit
public void Write()
{
this.OnWritingByte();
var data = this.Data; // N.B. Don't join these two lines together: the
this.Reference() = data; // data bus integrity is lost, due to evaluation order!
var value = this.Data; // N.B. Don't join these two lines together: the
this.Reference() = value; // data bus integrity is lost, due to evaluation order!
this.OnWrittenByte();
}