954,498 Members — Technology Publication meets Social Media
Username:
Password:
Lost login information?
Have something to say? Contribute New Article Reply to this Article

exe file problems

I make an exe file on notepad, save it as a .exe and try to launch it but it says:

"The NTVDM CPU has encountered an illegal instruction"

What does this mean and how can I get a .exe file to work properly?
Sorry if this has already been asked but I could not find a thread about it.

Thanks.

I_TRY
Newbie Poster
9 posts since Jul 2007
Reputation Points: 6
Solved Threads: 0
 

Exe files have to follow a certain format, and not every piece of machine code forms valid instructions. Yours was broken. You'd probably want to take some source code and compile it, if you want to create an exe.

Rashakil Fol
Super Senior Demiposter
Team Colleague
2,658 posts since Jun 2005
Reputation Points: 1,135
Solved Threads: 177
 

oh god
that is the funniest think i have ever heard any one trying in my entire carrier.

dear EXE file are not created like you have tried(smart try) .You need to write some code and compile it to make an Executable.
someday you will also learn that.

debasisdas
Posting Genius
6,872 posts since Feb 2007
Reputation Points: 666
Solved Threads: 434
 

haha. Tbh, LEARN TO SPELL. LEARN TO TYPE. LEARN TO USE PROPER ENGLISH LANGUAGE. and most improtantly...

<< removed profanity >>

I_TRY
Newbie Poster
9 posts since Jul 2007
Reputation Points: 6
Solved Threads: 0
 

<< snipped racist comment >>

I_TRY
Newbie Poster
9 posts since Jul 2007
Reputation Points: 6
Solved Threads: 0
 
Paki #######

hey!

that is not appropriate!
racism will not be tolerated. This has been reported to the admin staff.

jbennet
Moderator
Moderator
18,523 posts since Apr 2005
Reputation Points: 1,826
Solved Threads: 601
 
I make an exe file on notepad, save it as a .exe



First of all nothing to ashamed of in what you have done. Let me tell you what exe file is first.
Any application(an exe) is a set of instructions which are in machine readable format. You will ask what does machine readable format mean? It means that whatever instructions or operations we have asked the exe to do are to communicate with your Operating System in order to have a perfect execution. It needs some place to first place itself which is known as Load memory area. So the Operating System has to be informed such an application has been loaded in so and so memory address please ensure proper execution.

In order to do all these we have few function calls that interact with the OS. So if you are not making an exe have those function calling mechanisms in order to let the OS know its location and what tasks it needs to it is called broken application means it is accessing some memory which is not known or registered by the OS.

So I think I could give u a brief Idea about what exe is. Now whose job it is to generate all these function calls. Do you think the Programmer writes all of it. As a matter of fact no. Programmer writes only the portion of the code that needs to carry out the task that the application is supposed to do. Then there is something called a compiler. It will then take care that all the necessary additional information (as discussed earlier) is added to the exe. Without those information the exe can't be formed. So you can now understand that Notepad cannot do such kind of operation. hence the error u faced.

Please feel free to discuss any more issues or topics you want to know. I would be very pleased to help u out.

shouvik.d
Junior Poster
198 posts since Jan 2007
Reputation Points: 64
Solved Threads: 7
 

This article has been dead for over three months

Post: Markdown Syntax: Formatting Help
You