; Write a program to store the string "Don't Print This. Print This." starting at 0x20000 ; the program should then print out only the "Print This." portion of the string set 0x2000 ; mov start of data segment to 0x2000 string: db "Don't Print This. Print This." ; storint string as per instructions start: mov AH, 0x13 ; sub function for int 0x10 to print string mov CX, 11 ; length of "Print This." mov BX, 0x2000 ; setting up to move into ES mov ES, BX ; mov BX into ES to setup segment for printing string mov BP, 18 ; mov BP over 18 to skip over "Don't Print This. " int 0x10 ; interrupt to print string