Home
Produce a Short Beep Sound
August 13, 2010You can use a loop to create a succession of beep sounds. The complete code to produce a single beep sound is right below.
org 100h
mov ah, 02
mov dl, 07h ;07h is the value to produce the beep tone
int 21h ;produce the sound
int 20h
ret
Letters Only
August 11, 2010The code is able to delete the character if it’s not a letter (a-z, A-Z). Its limitation: INPUT IS NOT BEING SAVED IN A BUFFER SO INPUT STRING IS NOT REUSABLE. I’m still looking for a solution.
If num1>num2 show product else show sum
*****FROM JHAY*******
can you give the code of this
if first number is greater than second number display product
and if second number is greater than first number display sum
example:
Enter a first number: 4
Enter a second number:2
product : 8
***********************
SCREENSHOTS
More Examples on EMU8086
August 8, 2010When using the Emu8086, you can find lots of sample codes within the program like addition and subtraction, the scroll thing, the LED simulation, robot simulation, traffic lights simulation and many more. Just in case you can’t find there what you need, just let met know and I will try to do my best.
Zeroes aligned right
SCREENSHOT
RIGHT CLICK LINK ABOVE THEN SAVE LINK AS OR SAVE TARGET AS TO DOWNLOAD
UPDATE FOR ASSEMBLY SAMPLES
August 7, 2010I’m sorry guys! I wasn’t able to monitor this blog since I have to focus on my work. I promise to spend a bit of my time for this from now on. This is to help you guys. I believe we are all pinoys here.
I’ll be using MediaFire instead of Ripway as my file server from now on. Broken links will be fixed soon.
As of now, only the links of Singe Digit and Multiple Digit Operation are working.
Addition, Subtraction , Multiplication and Division (more than one digit , no decimals)
August 7, 2008SCREEN SHOT:
RIGHT CLICK LINK ABOVE THEN SAVE LINK AS OR SAVE TARGET AS TO DOWNLOAD
Addition, Subtraction , Multiplication and Division (single digit input only)
August 5, 2008SCREEN SHOTS:
RIGHT CLICK LINK ABOVE THEN SAVE LINK AS OR SAVE TARGET AS TO DOWNLOAD
Diagonal Letters
SCREEN SHOT:
RIGHT CLICK LINK ABOVE THEN SAVE LINK AS OR SAVE TARGET AS TO DOWNLOAD
Loop Sample 2
July 28, 2008SCREEN SHOT:
RIGHT CLICK LINK ABOVE THEN SAVE LINK AS OR SAVE TARGET AS TO DOWNLOAD


