Skip to content

Commit e9893f7

Browse files
committed
updated the macro names for the macros that create bitmasks from bit number
1 parent d56d72e commit e9893f7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

math8_test/math8_test.asm

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -555,15 +555,15 @@ ResultGood:
555555
nv_screen_print_hex_byte_mem(op1, true)
556556
nv_screen_print_str(equal_str)
557557

558-
nv_mask_from_bit_num_mem(op1, false)
558+
nv_create_bitmask8x_mem_a(op1, false)
559559
nv_beq8_immed_a(expected_mask, MaskGood)
560560
ldx #0
561561
stx passed
562562

563563
MaskGood:
564564
nv_screen_print_hex_byte_a(true)
565565
nv_screen_print_str(negated_str)
566-
nv_mask_from_bit_num_mem(op1, true)
566+
nv_create_bitmask8x_mem_a(op1, true)
567567
nv_beq8_immed_a(expected_neg_mask, NegMaskGood)
568568
ldx #0
569569
stx passed
@@ -588,7 +588,7 @@ NegMaskGood:
588588
nv_screen_print_hex_byte_mem(op1, true)
589589
nv_screen_print_str(equal_str)
590590
lda op1
591-
nv_mask_from_bit_num_a(false)
591+
nv_create_bitmask8x_a(false)
592592
sta temp_byte
593593
nv_beq8_immed_a(expected_mask, MaskGood)
594594
lda #0
@@ -600,7 +600,7 @@ MaskGood:
600600

601601
nv_screen_print_str(negated_str)
602602
lda op1
603-
nv_mask_from_bit_num_a(true)
603+
nv_create_bitmask8x_a(true)
604604
sta temp_byte
605605
nv_beq8_immed_a(expected_neg_mask, NegMaskGood)
606606
lda #0

0 commit comments

Comments
 (0)