vote up -1 vote down star

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
flag
Please elaborate. Don't leave these kinds of sparse, vague questions. – Rich B Sep 27 '08 at 19:47
What architecture, x86? PowerPC? ARM? – Adam Rosenfield Sep 27 '08 at 19:48
@Rich: 'random algorithm'=random number generator, 'feed'=seed. – Mike F Sep 27 '08 at 20:40
@Mike F, Thanks! English isn't my native language... as you can see. – TCJ Sep 28 '08 at 4:34
@TCJ: So is RDTSC what you were looking for? – Mike F Sep 28 '08 at 4:59
show 1 more comment

1 Answer

vote up 1 vote down

Not sure what you mean by the question, but are you possibly looking for RDTSC?

If so, it's not directly supported by TASM but you can insert the opcode for it with

db 0Fh, 31h
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.