Skip to content

Commit

Permalink
Update Compilation.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
informedcitizenry authored Apr 21, 2017
1 parent c5b7b9b commit b8b7fed
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions 6502.Net/Compilation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -267,17 +267,6 @@ public void Fill(int amount)
ProgramCounter += amount;
}

/// <summary>
/// Fill memory with the specified values by the specified amount.
/// </summary>
/// <param name="amount">The amount to fill</param>
/// <param name="value">The fill value</param>
public void Fill(int amount, byte value, bool doNotAlign)
{
var bytes = Enumerable.Repeat(value, amount);
AddBytes(bytes, true);
}

/// <summary>
/// Fill memory with the specified values by the specified amount.
/// </summary>
Expand Down

0 comments on commit b8b7fed

Please sign in to comment.