Basic
In computer programming, BASIC (an acronym for Beginner's All-purpose Symbolic Instruction Code[1]) is a family of high-level programming languages.
Application
Any
Platform
License
Any
Hi all,
I am a beginner in assembly. I prefer masm16. It seems right to choose it for me as a beginner.
I have studied the language basics. Now I am practising by writing some code. I want to...
thank you, vary vary mach.
: Can I use a negative num as operand?
: for exmple:
: add eax, -1
: or
: sub eax, -1
Yes.
: Can I use dec, when the register's value is 0?
: for exmple:
: mov eax,0
: dec eax
Yes....
Can I use a negative num as operand?
for exmple:
add eax, -1
or
sub eax, -1
Can I use dec, when the register's value is 0?
for exmple:
mov eax,0
dex eax
0 Then
: result = c(i) & " x " & b(i)
: Cells(40 + d, 81 + e) = result
: If a = 0 Then e = e + 1
: End If
: Next i
: d = d + 1
:
0 Then
result = c(i) & " x " & b(i)
Cells(40 + d, 81 + e) = result
If besteachtype = 0 Then e = e + 1
End If
Next i
d = d + 1
0 Then
result = c(I) & " x " & b(I)
End If
Cells(40 + d, 81) = result '**STORE IN YOUR COLUMN
d = d + 1
Next I
0 Then
result = C(I) & " x " & B(I)
End If
Next I
Cells(40 + d, 81) = result
d = d + 1
where "result" is defined as a string. The problem is that I only get the last...
If its easier to be done in C++, how is programming like ? Isn't it that 8085's assembly language is the basic ?
: That information should be available in the online help within
: QBasic, if I remember correctly. If you don't have the full version,
: you can download it at
: http://www.qbcafe...
: which website provides this environment to execute the 8086
: programs?
I am not sure what you mean here...
: moreover how to write a program in masm-8086 using
: procedures.
In NASM,...
: Sum:= 0;
: for X := 1 to 10 do
: Sum:= Sum + X;
:
: I am trying to write this code in MARIE but i have no idea where to
: start. Can someone walk me through this process step by step?
:...
: : : hey, i have a problem in marie and i need help!!. i need to raise an
: : : interger to a given power. so if n=5 and p=3, then 5^3=125. Thanks!
: : :
: :
: : Use a loop to multiply n for...
There is a MBasic that is associated with programming Microchip's line of PIC microcontrollers. Then there is the old Microsoft MBasic which was the predessesor of GW Basic and Quick Basic. Are...
: hello! Is it possible to create a program using visual basic to send
: sms from computer to cell phone and receive sms from cell phone to
: computer? What are the materials that I need except...
: : : hello! Is it possible to create a program using visual basic to send
: : : sms from computer to cell phone and receive sms from cell phone to
: : : computer? What are the materials that I...
hello! Is it possible to create a program using visual basic to send sms from computer to cell phone and receive sms from cell phone to computer? What are the materials that I need except for the...
:
: Tha Art of Assembly is a great online book (and is probably the most
: recommended):
:
: http://webster.cs.ucr.edu/AoA/DOS/index.html
:
: I can put comments on each line, if you like,...