On a 16bit real mode x86 program I can locate a string that is displayed on screen. How do I go about finding all the places this string is called from to trace back the "print" function?
Asked
Active
Viewed 467 times
1 Answers
1
Try searching for INT 10h
, that's the x86 BIOS interrupt that allows you to output text to the screen, as well as change the video mode and cursor position among other things.

Avery3R
- 1,258
- 1
- 12
- 31
-
1I should have mentioned its an embeded rom so not a standard bios. I am trying to track down this exact call idea though. – uMinded Jul 19 '19 at 20:39
-
@uMinded agreed, and moreover you should edit this into your question. These are the things anyone willing to assist needs to even attempt to help. – 0xC0000022L Dec 17 '19 at 22:43
x
in IDA when this string is selected? – bart1e Jul 19 '19 at 19:12