I'm trying to understand what this subroutine does. It goes like this:
sub_407690 proc near
jmp ds:dword_415764
sub_407690 endp
dword is defined as
dword_415764 dd 1702Ch
So what I understand is it jumps to address of data segment + 1702Ch. But how do I know what is in data segment register? I am using IDA Pro and when I click on dword_415764 it simply goes to its definition but I want to jump to the location where that jmp leads. Please help me understand this. And I would appreciate if you gave me some resources to educate myself in this area, because I couldn't find anything on Google.