MrDoomMaster
March 22nd, 2004, 10:25 AM
Hey guys, I'm using Visual Studio .NET 2003 to assemble and execute my 16BIT assembly code. To do this, I am using 2 seperate external tools (custom build). One actually assembles and links the code, while the other tool opens CMD.EXE to execute the resulting EXE.
Once I press the "Execute" tool, it opens a windowed console, which isn't what I want. I would like to know a specific command I can give to the external tool to make it open as full screen.
For some reason, windowed version of the console doesn't execute my assembly code very well, yet full screen CMD will do it how it is supposed to be done.
The only way I figure to correct this bad execution of my assembly program is to run it in full screen console mode. if anyone knows how to make the regular windowed console work, that would be great.
Here is the command I have for the Execute tool. It is an external tool with the following command:
COMMAND: C:\WINDOWS\system32\cmd.exe
ARGUMENTS: /C $(ItemDir)$(ItemFileName).exe
INITIAL DIR: $(ItemDir)
Remember, I need CMD to open in FULL SCREEN mode via command. Thanks!
Once I press the "Execute" tool, it opens a windowed console, which isn't what I want. I would like to know a specific command I can give to the external tool to make it open as full screen.
For some reason, windowed version of the console doesn't execute my assembly code very well, yet full screen CMD will do it how it is supposed to be done.
The only way I figure to correct this bad execution of my assembly program is to run it in full screen console mode. if anyone knows how to make the regular windowed console work, that would be great.
Here is the command I have for the Execute tool. It is an external tool with the following command:
COMMAND: C:\WINDOWS\system32\cmd.exe
ARGUMENTS: /C $(ItemDir)$(ItemFileName).exe
INITIAL DIR: $(ItemDir)
Remember, I need CMD to open in FULL SCREEN mode via command. Thanks!