Compiler, TASM 5
Architecture x86.
For a random number generator algorithm, take tha clock as the seed.
I found that solution:
AcquireSeed PROC
PUSH AX
PUSH CX
PUSH DX
MOV Ah, 00h ; Int
INT 1AH ; return the clock in CX:DX
MOV seed, DL ; save the less significant byte of the clock at seed (declared at .data)
POP DX
POP CX
POP DX
AcquireSeed endp