Click here to Skip to main content
15,893,663 members
Home / Discussions / C#
   

C#

 
AnswerRe: Calling particular instance form method from another form Pin
Not Active15-Mar-10 4:59
mentorNot Active15-Mar-10 4:59 
GeneralRe: Calling particular instance form method from another form Pin
DaveyM6915-Mar-10 5:10
professionalDaveyM6915-Mar-10 5:10 
GeneralRe: Calling particular instance form method from another form Pin
polyconnect15-Mar-10 7:53
polyconnect15-Mar-10 7:53 
Questionmaking a microprocessor simulator in C# Pin
Djtech0115-Mar-10 2:52
Djtech0115-Mar-10 2:52 
AnswerRe: making a microprocessor simulator in C# Pin
OriginalGriff15-Mar-10 3:45
mveOriginalGriff15-Mar-10 3:45 
GeneralRe: making a microprocessor simulator in C# Pin
Djtech0115-Mar-10 4:11
Djtech0115-Mar-10 4:11 
GeneralRe: making a microprocessor simulator in C# Pin
OriginalGriff15-Mar-10 4:20
mveOriginalGriff15-Mar-10 4:20 
GeneralRe: making a microprocessor simulator in C# Pin
Dave Kreskowiak15-Mar-10 4:39
mveDave Kreskowiak15-Mar-10 4:39 
OriginalGriff wrote:
the MSIL is interpreted at run time, not converted in any way to instructions that are directly machine executable


Uhhh, not exactly true. MSIL is converted to the processors native machine code upon execution. Remember the Just-In-Time compiler? That's what it does. MSIL is not interpreted at runtime. It's compiled down to native code for the processor it's running on. If you take the exact same MSIL code and execute it on two different processors, say a AMD Athlon 2600 and an Intel Core 2 Duo, you'll get different native code images.

But, since he's simulating an 8086, he can't use the .NET compilers, nor NGEN, to generate his native code since the JIT does not work with such an old processor.

A guide to posting questions on CodeProject[^]



Dave Kreskowiak
Microsoft MVP
Visual Developer - Visual Basic
     2006, 2007, 2008
But no longer in 2009...




GeneralRe: making a microprocessor simulator in C# Pin
OriginalGriff15-Mar-10 4:46
mveOriginalGriff15-Mar-10 4:46 
AnswerRe: making a microprocessor simulator in C# Pin
Richard MacCutchan15-Mar-10 3:57
mveRichard MacCutchan15-Mar-10 3:57 
AnswerRe: making a microprocessor simulator in C# [modified] Pin
harold aptroot15-Mar-10 4:08
harold aptroot15-Mar-10 4:08 
AnswerRe: making a microprocessor simulator in C# Pin
Luc Pattyn15-Mar-10 4:09
sitebuilderLuc Pattyn15-Mar-10 4:09 
GeneralRe: making a microprocessor simulator in C# Pin
DaveyM6915-Mar-10 5:09
professionalDaveyM6915-Mar-10 5:09 
GeneralRe: making a microprocessor simulator in C# Pin
Luc Pattyn15-Mar-10 5:25
sitebuilderLuc Pattyn15-Mar-10 5:25 
GeneralRe: making a microprocessor simulator in C# Pin
DaveyM6915-Mar-10 5:48
professionalDaveyM6915-Mar-10 5:48 
GeneralRe: making a microprocessor simulator in C# Pin
Luc Pattyn15-Mar-10 6:39
sitebuilderLuc Pattyn15-Mar-10 6:39 
GeneralRe: making a microprocessor simulator in C# Pin
DaveyM6915-Mar-10 7:22
professionalDaveyM6915-Mar-10 7:22 
GeneralRe: making a microprocessor simulator in C# Pin
CPallini15-Mar-10 7:52
mveCPallini15-Mar-10 7:52 
GeneralRe: making a microprocessor simulator in C# Pin
DaveyM6915-Mar-10 8:10
professionalDaveyM6915-Mar-10 8:10 
GeneralRe: making a microprocessor simulator in C# Pin
harold aptroot15-Mar-10 8:17
harold aptroot15-Mar-10 8:17 
GeneralRe: making a microprocessor simulator in C# Pin
CPallini15-Mar-10 9:09
mveCPallini15-Mar-10 9:09 
GeneralRe: making a microprocessor simulator in C# Pin
CPallini15-Mar-10 9:06
mveCPallini15-Mar-10 9:06 
AnswerRe: making a microprocessor simulator in C# Pin
Djtech0115-Mar-10 4:19
Djtech0115-Mar-10 4:19 
GeneralRe: making a microprocessor simulator in C# Pin
Dave Kreskowiak15-Mar-10 4:33
mveDave Kreskowiak15-Mar-10 4:33 
AnswerRe: making a microprocessor simulator in C# Pin
Dave Kreskowiak15-Mar-10 4:30
mveDave Kreskowiak15-Mar-10 4:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.