Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
GeorgRottensteiner committed Apr 2, 2021
1 parent a2b8cf7 commit bdca561
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 6 deletions.
6 changes: 6 additions & 0 deletions Doc/ide_debug_memory.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ <H3>Debug Memory</H3>
<br>
Values that changed during the last step are marked red.<br>
<br>
Clicking on the display-as-text button (left most) will switch to character display. Clicking again switches to lower case mode.<br>
<br>
Clicking on the display-as-charset button (second left) will switch to characterset display. Clicking again switches between hires, multicolor and ECM mode. The used colors can be changed via right-click context menu.<br>
<br>
Clicking on the display-as-sprite button (third) will switch to sprite display. Clicking again switches between hires and multicolor mode. The used colors can be changed via right-click context menu.<br>
<br>
<br>
</div>
</body>
Expand Down
2 changes: 2 additions & 0 deletions Doc/ide_debug_registers.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ <H3>Debug Registers</H3>
<b>Status</b><br>
Status displays the various flags of the CPU. NV-BDIZC from left to right are Negative flag, Overflow flag, Expansion Bit (unused), Break flag, Decimal flag, Interrupt flag, Zero flag and Carry flag.<br>
<br>
Overwriting values will update them for the current session where applicable (A, X, Y, PC, Flags). Updating values obviously only works in active Debug Mode.<br>
<br>
<br>
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion HexBox/BuiltInContextMenu.cs
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ internal string CopyAsHexMenuItemTextInternal
/// <summary>
/// Gets the text of the "Select All" ContextMenuStrip item.
/// </summary>
internal string SelectAllMenuItemTextInternal { get { return !string.IsNullOrEmpty(SelectAllMenuItemText) ? SelectAllMenuItemText : "SelectAll"; } }
internal string SelectAllMenuItemTextInternal { get { return !string.IsNullOrEmpty(SelectAllMenuItemText) ? SelectAllMenuItemText : "Select All"; } }

/// <summary>
/// Gets or sets the image of the "Cut" ContextMenuStrip item.
Expand Down
Binary file modified Sample Projects/MacroTest/MacroTest.c64
Binary file not shown.
Binary file modified Sample Projects/MacroTest/MacroTest.s64
Binary file not shown.
10 changes: 5 additions & 5 deletions Sample Projects/MacroTest/dountil_test.asm
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ num_tiles = 10

START

;!set i=0
;!do {
;!byte <tilesdata_HR+i*4
;!set i = i + 1
; } until i > num_tiles
!set i=0
!do {
!byte <tilesdata_HR+i*4
!set i = i + 1
} until i > num_tiles
!for i=0 to num_tiles
Expand Down

0 comments on commit bdca561

Please sign in to comment.