2,878 Topics

Member Avatar for
Member Avatar for Drake

What does the software or computer actually do when you compile a program using a software tool such as MPASMWIN. Just need to know what compiling actually does?? Would be great help cheers

Member Avatar for mvmalderen
0
92
Member Avatar for hellIon

hey guys can u gimme some links ,resources or codes.....which can show me how to use api in assembly 32-bit i am using masm32

Member Avatar for MosaicFuneral
0
113
Member Avatar for Thug Heart

Hi All , I have a question regarding to if statement ,,, my question is : How can I compare between 2 values ?! let's suppose I want to see if (x > y ) print "x greater than y" if ( x < y ) print "y greater than …

Member Avatar for Thug Heart
0
94
Member Avatar for learner2

if anybody knows the details about 40 pins of 8088/8086 then plz let me know.as soon as possible.thanks

Member Avatar for ddanbe
-1
71
Member Avatar for learner2
0
51
Member Avatar for mickeyken

Write a program that calculates the value of x using these two formulae: w = (22102 * -12)/(18 – 3) x = (12032/w) * (2354 + 34) Use the properly-sized signed or unsigned operands as appropriate. Demonstrate that your answer is correct by using the debugging software to walk through …

Member Avatar for mickeyken
0
67
Member Avatar for Ineedhelpplz

This is a part of my homework. I have completed part 1. Part 2 asks that I re-write my part 1: [CODE]"Write a modified version of part A, in which the function is to be called as though it had the following prototype: void sumPowers(int n, int *pSum);[/CODE] is this …

Member Avatar for Ineedhelpplz
0
120
Member Avatar for kamikazee789

Can someone create a code for me that prints all the 2 to 7 words from the input given by the user? Just like in the game text twist?.. please :(

Member Avatar for Salem
0
29
Member Avatar for Linda1

I am trying to build an lcd file. The project is, using a dragon 12 lcd, we need to put a string in 0,0 (top) lcd screen position and another string in 0,1 (bottom screen position. The strings has to rotate around the screen. I did part of the code …

-1
64
Member Avatar for mvp0014

write a program that will sort 10 inputted words or either ascending or descending order which selected by means of clicking the options............ NEED HELP PLEASE REPLY... ASAP....

-1
38
Member Avatar for OzY360

hi, i was wondering if there are any free programs available that will allow me to edit source code, assemble & link it, debug and run it. The source code written in assembly is specific to the 68000 family of motorolla chipsets. i just think it would be useful for …

Member Avatar for OzY360
0
156
Member Avatar for clshah2

I have written the following code for reading and outputting characters and strings and then converting the strings to lowercase and sorting the characters with bubble sort! When I run the code, the code loops infinitely without doing anything except reading and outputting the strings and characters. Can someone help …

0
48
Member Avatar for Ineedhelpplz

Now i'm not asking for a complete easy answer or source, so please take the time to help me. I would like a very detailed explanation telling what to do, I have no idea. I am very confused by stacks, functions, pushing, popping, and all that. I am very new …

Member Avatar for Ineedhelpplz
0
565
Member Avatar for smileyme74

hi guys: I just need help in how the srl instruction works in my program. I would like to know the interpretation. Like if I input de decimal number 8, which is 1000 in binary. I would like to know how it works. this is the code, it converts decimal …

Member Avatar for GDICommander
0
113
Member Avatar for luca789

ok boys, I'm new, noob and ready to do any effort needed. I have to write a MIPS assemply program for My MIPS course and I need just some examples... do you know any link where I can find any .s .asm mips programs? I'm especially looking for recursive programs …

Member Avatar for ithelp
0
28
Member Avatar for ak46

My code is mistake asm->hex please help me. Thanks [code] hold macro NOP NOP NOP endm disp_str macro string irpc char, < string > IF nul 'char' exitm endif MOV A,#'char' LCALL data_in endm endm build_char macro P1,P2,P3,P4,P5,P6,P7,P8 irp arg, < P1,P2,P3,P4,P5,P6,P7,P8> MOV A,#arg ACALL data_in endm endm [/code]

0
46
Member Avatar for makubexiii

how can you input a string, clear the screen, then print Hello "string"? example: [CODE]org 100h MOV AX,03 INT 10H MOV AH,02 MOV BH,00 MOV DH,0CH MOV DL,19H INT 10H MOV DX,OFFSET MSG1 MOV AH,09 INT 21H MOV DX,OFFSET SZ MOV AH,0AH INT 21H MOV AX,03 INT 10H MOV AH,02 …

0
71
Member Avatar for .11

I cant check if this is write as I have to do it at school. But I wanted to know if you can read over for me. This is my multiplication [CODE] add $s2, $zero, $zero add $t0, $zero, $zero LOOP: beq $t0, $s0, EXIT add $s2, $s1, $s2 addi …

Member Avatar for .11
0
117
Member Avatar for Felon

This program in not working, the number that needs to be diplayed on the leds in EA. [CODE];program to count the number of odd bytes in memory from address 0xff00 to 0xffff. ;number is to be displayed on 8 leds ;set up for leds and hardware prog equ $2000 PORTB …

Member Avatar for Salem
0
91
Member Avatar for eniwe

i do not seem to be getting anywhere with my probe aimed at searchfirst, open file and overwrite and so on. Hence i have no other alternative other than start from scratch. Though my initial attempt to create an overwriting file, has failed, i did achieve substantial understanding of several …

0
67
Member Avatar for OzY360

Hello. I have been assigned a programming task which is to be completed using assembly language for motorolla 68k (os9). I will attach the assignment brief to the email and a copy of the source code in a txt file. I have to adapt the code so that it does …

Member Avatar for OzY360
0
180
Member Avatar for jediahsan

im working on NASM and AFD.exe i have to multiply the contents of 2 arrays of size 10 and store them in an array named result without using the mul operation. i can only use mov add sub jnz jz in this one. ive tried hard and am close to …

Member Avatar for Salem
0
86
Member Avatar for jakethesnake86

I am trying to program a microprocessor using c/c++ with assembly subroutines. I have a working assembly subroutine, Button_Push, that returns a 1 if a button has been pushed. I have tested this subroutine in an assembly language program. I am really having trouble using the subroutine in C though. …

0
86
Member Avatar for nicck0

I've been trying on putting up large decimals on the register and when i typed: mov bx, 100000d on assembling the program it says: ...Error: Value out of range something like that.. what should i do.. can you pls help me.. thanks.. btw im using tasm..

Member Avatar for nicck0
0
155
Member Avatar for VBNick

I literally picked up asm today. I have been trying to create a 3d software rendering engine in C++, and figured out doing things directly would be faster....but, I tried the following code: [code="cplusplus"] int _tmain(int argc, _TCHAR* argv[]) { int num, timestart, dur; timestart = clock(); for(int i = …

Member Avatar for VBNick
0
116
Member Avatar for Lilith24

Recently I was interested in making a stock bot as a neat project for myself. It would run on a virtual stock exchange account, not using real money of course. The biggest problem I have run into is getting data to and from websites as I have no idea how …

Member Avatar for Salem
0
105
Member Avatar for ryansullivan

So I have an assignment where I have to translate some code in C to MIPS. It is what we are calling "Rule 1," which solves Sudoku puzzles by eliminating a number from a column, row, or 3x3 box if it is present elsewhere in that same row, column, or …

Member Avatar for ryansullivan
0
888
Member Avatar for Motvel

I need to do a project. How can i develop a keyboard driver in C & ASM? which book i should to consult. Its very helpful for me if i found material on internet. Please provide appropriate URL? The keyboard is connected through USB. if u can help me i …

Member Avatar for cuocthiseo01
0
138
Member Avatar for JacquesB

Hi, I have a multithreading bug somewhere, probably not in the semaphores, but would like to make sure if out-of-order execution (OoOE) could produce some weird problem: I explain the problem in 3 steps: Step 1: mov eax, dword ptr [Some_global_variable_ONE] mov ebx, dword ptr [Some_global_variable_TWO] Due to OoOE, the …

0
35
Member Avatar for kamaoako

heres the code i wrote its not working yet need a little help only know a few assembly commands so not really good with it yet. [code] .data msg1 db 'Enter a word (max 20 characters): $' msg2 db 13,10m, 'The Reverse: $' str db 22 dup(0) buffer db 22,23 …

0
47

The End.