I am trying to implement interrupt in my project, and while preparing the IDT entries, I am struggling to split the pointer to a function on two short.
This is the objdump with C:

And this is the C source:

What I do not understand is:
- It takes the value of the pointer (0x10670) and saves it in EAX. It takes AX to mask the first 16 bits (instead of doing the & AND) which will map to 0x7060 (little endian), this is fine, but for the high 16 bits it simple writes 0x0000 when I would expect 0x0100 (little endian), or even actually masking EAX with 0xFFFF0000 and then saving the value.
I assume I am doing something wrong, but I can't get my head around this after trying several things.
Any idea, suggestion or comment will be really appreciated!!
Thanks in advance.