Multimedia
Multimedia is media that utilizes a combination of different content forms.
Language
Assembly
Remove
Platform
Any
License
Any
" ***** FILE is NOT recoverable !!!! **** "
This program uses int 21h function 40h to overwrite. This interrupt uses buffered I/O...
This means that under all versions of dos and windows it...
Try one of these:
mov ax, data
mov ax, seg inname
Also, consider that the strength of Masm32 is 32-bit Windows programming. For 16-bit, Fasm is more suitable.
In Windows all memory areas are accessed using API. There are some task parameters to be accessed using FS:0000 address, but these (the structure layouts) can be modified by next OS version, so you...
Thanks..
That makes things easier..
Do you also know of a way i can do the same using pure or Fasm assembly ?
I'm guessing that the command line parameters including the program string...
I would like some input into learning x86 assembly language on a PC. My question is - How do you write beginning assembly language programs without having to navigate the Windows OS? (a.k.a. Win32...
I'm not directly accessing video memory - I'm using a Device Independent Bitmap which is then displayed by Windows. My program does nothing but write to the bitmap array.
If you are starting over more or less from the beginning, I recommend Borland TASM and Turbo Debugger. You can use the Ideal mode and the MASM mode, compare them, and learn even more from running a...
The point of using bitmaps is exactly the way of NOT using the color for each pixel, because it is too hard.
I'm using for Windows xp,
however I think to use
an emulator if is possible
to make it in z80 assembly,or any
other emulator.
I really need help :(
Thank you for your reply
again ;)
Bye,i...
Thank you so much! Especially for pointing out #3. All along I was assuming that labels would return to the caller, I wasn't aware that they just fall through! It all makes sense to me now, again...
Wow ! I tried animation before with GRAPH commands, but this blows it away. What I wanted to do, is to write a game, but the results always turned me off, now I see hope. It is clear that ASSEMBLY is...
: Just a side note here. This code assumes that you have a color
: video system (not monochrome), and that the screen has 80 columns.
: In a testing or completely controlled environment, this...
Just a side note here. This code assumes that you have a color video system (not monochrome), and that the screen has 80 columns. In a testing or completely controlled environment, this is OK....
9 )
{
result_str = sum / 10 + '0';
result_str = sum % 10 + '0';
}
else
{
result_str = sum;
}
Amazing stuff bret, thank you for sharing all this info. Having the ability to trap I/O in DOS could lead me to converting my ancient AC97 audio player into something that could do soundblaster...
: Hello, I have a problem, if I do the following, it works fine for
: what I need to do:
:
: :
: mov bx,0
: mov vector,1
: :
:
: But if I want to put a variable instead the number 1,...
Hi. Below is my another way of getting the highlighted area with sepecific coloum and row. Yet i found that my music wav file can run with the set area colour procedure.
.486
.model flat,stdcall...
Thank you ASMGURU.
i have study a bit of the function from the link given by you.
Yet i need to put more effort to understand it as i m not that familiar with masm32 bit.
Previously only deal...
: thanks for your prompt reply.
:
: But wat should i do to achieve the purpose to set the colour for
: desired area only but not on the GUI application?
:
: actually, i would like to write a...
hi al,
I would like to asking for advises regarding on the application of macros in 32bit masm.
i have 3 macro as shown below. These macros function smoothly when i apply them in masm 16 bit....