The MASM Forum Archive 2004 to 2012

General Forums => The Workshop => Topic started by: 0x401000 on November 13, 2009, 07:03:05 PM

Title: Caching
Post by: 0x401000 on November 13, 2009, 07:03:05 PM
How can I implement the caching code, just make the emulation, a vivid example of learning to study caching, for example to make a command interpreter, to do repetitive commands, and perform module caching for this interpreter. Thank you!
Title: Re: Caching
Post by: ecube on November 13, 2009, 08:18:41 PM
not sure exactly what you want but my understanding of caching is keeping a copy in memory to avoid having to retrieve it from other places, which inturn speeds things up alot. So using memory, or better structures(which is structured memory) to store said data, then retrieving when needed seems the best route to go. Theres array examples on the forum I believe, Donkey has examples in his strings library, that lets you create an array, and add,remove,edit, organize, list and retrieve string entries.
Title: Re: Caching
Post by: oex on November 13, 2009, 08:37:37 PM
ASM is 'compiled' rather than 'interpreted' you could reference by address or create an eval function
Title: Re: Caching
Post by: 0x401000 on November 13, 2009, 08:43:23 PM
I mean not only the caching of data, but some of the results of calculations, in the memory of your previous routines. Where can I download this library? site can be? Thank you!