Well, one problem is 'DQ' defines a quadword, not a dword, so that needs to be fixed. Basically, you can do something like this.
BITS 16
ORG 0x100
mov ax, [hexNum]
mov bx, [hexNum + 2]
; do whatever with the code.
mov ah, 0x4C
int 0x21
hexNum: DD 0xFA34ED67