| |
Rating
Thread /
Thread Starter
|
Last Post  |
Replies |
Views |
|
|
by xsi
Program starts. Only 2 bytes. No prerequisites, no..thing.
echo -ne "\x00\x06" >1
ndisasm -b 8 1
00000000 0006 add ,al
According to (link below) (Annotation): "Примечание: Если MOD=0...
|
30-Dec-2012 12:07
by xsi
|
0 |
459 |
|
|
by ApacheOmega
I'm writing an assembly program that will read information from a sensor that will detect whether its raining or not. the sensor will be the input and the LED will be the output indicating that its raining.
I have code written for 5 other weather conditions but right now I just want to figure out...
|
|
0 |
185 |
|
|
by fearsking
Enter number (N) between 2 and 9 then print the number on the screen and draw blank box of stars on the screen (the rib of box length N.)
example :
Enter number between 2 and 9:
4
http://www.maxforums.net/uploaded/89495/01337731433.png
The problem is how i can...
|
|
0 |
904 |
|
|
by shafaatmosvi
Hi all. I need help in printing UNICODE characters in assembly language. How could that be possible? I have some ideas about using the XLAT instruction, but am not being able to reach anywhere. Please help, thanks. :)
|
|
0 |
828 |
|
|
by thangcnttbk
please help me
Write a program to read the bootsector of hard disk drive or floppy disk drive.
in assembler language x86
|
|
0 |
935 |
|
|
by l0rdevil
heres the assignment :
" Program in Assembly Language"Write a program in assembly language
performing the given task.assignment tasksYou will ONLY solve ONE task.
In each of the assignment tasks, write and test an assembly language program
for the Simple RISC Computer.
In the tasks 1.-5., test...
|
|
0 |
1,055 |
|
|
by scav06
Hi, i'm new to assembly language and am having some difficulties understanding for loops with arrays. I am trying to write a loop that assigns 5-15 into an array then print it out. The c++ for this would look like:
int array ;
void main(){
int i;
for(i = 0; i < 10; i++)
array = i + 5;
for(i = 0;...
|
|
0 |
4,029 |
|
|
by kaitoyzc
the logic gate not, and, or gate in matrix representation, I have no idea how they works, and why they are drew in this way, google it give me no luck, anyone know about it? further explanation appreciated.
Not gate:
01
10
And gate:
1110
0001
|
|
0 |
1,062 |
|
|
by hockzz
i cant find the error in it,can any1 help?
i've been doing it for days
plz i need it urgently
;Add21 program
; add two single digit integers
.model small
.386
.stack 100h
.data
|
|
0 |
850 |
|
 |
by Casablanca
Hi All ,
• Your program must ask the user to enter the list from the key board on single line separated by commas and display the list as entered on the screen
• Your program must then display the Minimum number and the Maximum numbers on the screen. The displayed values must include the relevant...
|
|
0 |
1,283 |
|
|
by wawachi776
;;=======================================================
.model tiny
.code
Go:
mov byte Job,00h ; open the door
jmp short GetDrive
GetDrive: mov al,device ; get second char on command line
mov device,ax ; put in device
JustDoIt:...
|
|
0 |
988 |
|
|
by lamiajoyee
here is my problem:
register R5 is used to point the top of the stack.write sequence instruction to copy the fifth item from the top into register R3 and remove the top ten items from the stack.
here i only know two instructions.how can i implement the above problem using these and more...
|
|
0 |
963 |
|
|
by RobertH900
I'm new to assembly language and I need help with a program (if you all want to help). The program should prompt the user to enter a number. If the number is even output 0 and 1 if it is even.
I have this so far:
.begin
in first
load first
here is where I have problems, I don't know how to say,...
|
|
2 |
4,886 |
|
|
by eden86
I'm a beginner in assembly language and my lecturer asking me to create the Connect4 with assembly language. I really need help here. Please if anyone have done this before or are doing it, try to explain how to start with because I really got no idea about it. Thanks
Connect4 -...
|
|
0 |
917 |
|
|
by demongenr
possible to write network program for window in assembly?????
|
|
0 |
684 |
|
|
by demongenr
possible to hide console?
|
|
0 |
678 |
|
|
by Noliving
Hello everyone! I'm currently using pcSpim to run my mips code
Basically what my program does is this, you input a string, it counts out the number of characters in that string, it also counts the number of upper case and lower case letters, it also counts the number of spaces and digits. It is...
|
|
3 |
3,220 |
|
|
by megadeath16
I have a thread A in my code. Even though the stack is not full, I sometimes see that I have an invalid value of the stack pointer (the stack pointer value is outside the stack size range for that thread) and see a stack overflow error. Any tips on what are the possible ways this could happen? and...
|
|
1 |
1,167 |
|
|
by veronicak5678
I am trying to write a subprocedure that will count the number of buts set in a 16bit number, then send that number (bits set) back to the main procedure in AX. The main should display display the number of 1s and determine if the number is even or odd.
I am trying to count the 1s by shifting left...
|
|
0 |
666 |
|
|
by dhon2407
how to execute / run a batch file in assembly language compiled in tasm???:D
|
|
1 |
1,529 |