Which instructions are needed to make Y point to the following location in SRAM memory: myInitials .byte 3?
( )ldi YL, low(myInitials)
( )ldi YH, high(myInitials)
( )ldi YH, low(myInitials)
( )ldi YL, low(myInitials*2)
( )ldi YL, high(myInitials)
( )ldi YH, high(myInitials*2)