Skip to content

Commit

Permalink
updated the macro names for the macros that create bitmasks from bit …
Browse files Browse the repository at this point in the history
…number
  • Loading branch information
nealvis committed Oct 22, 2021
1 parent d56d72e commit e9893f7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions math8_test/math8_test.asm
Original file line number Diff line number Diff line change
Expand Up @@ -555,15 +555,15 @@ ResultGood:
nv_screen_print_hex_byte_mem(op1, true)
nv_screen_print_str(equal_str)

nv_mask_from_bit_num_mem(op1, false)
nv_create_bitmask8x_mem_a(op1, false)
nv_beq8_immed_a(expected_mask, MaskGood)
ldx #0
stx passed

MaskGood:
nv_screen_print_hex_byte_a(true)
nv_screen_print_str(negated_str)
nv_mask_from_bit_num_mem(op1, true)
nv_create_bitmask8x_mem_a(op1, true)
nv_beq8_immed_a(expected_neg_mask, NegMaskGood)
ldx #0
stx passed
Expand All @@ -588,7 +588,7 @@ NegMaskGood:
nv_screen_print_hex_byte_mem(op1, true)
nv_screen_print_str(equal_str)
lda op1
nv_mask_from_bit_num_a(false)
nv_create_bitmask8x_a(false)
sta temp_byte
nv_beq8_immed_a(expected_mask, MaskGood)
lda #0
Expand All @@ -600,7 +600,7 @@ MaskGood:

nv_screen_print_str(negated_str)
lda op1
nv_mask_from_bit_num_a(true)
nv_create_bitmask8x_a(true)
sta temp_byte
nv_beq8_immed_a(expected_neg_mask, NegMaskGood)
lda #0
Expand Down

0 comments on commit e9893f7

Please sign in to comment.