2,888 Topics
| |
Hi all, I am after a instruction set with limited or no floating-point instructions. Why I want this is to get a compiler of this certain architecture and compile code (one with floating-point and the other without). With the resulting assembly I wanted to compare the two and do some … | |
hi, im new in assembly so if u could tel me witch free assembler and emulators are the best for training. Thanks | |
I am very new to Assembly language, I have some knowledge of C/C++ but am very much lsot when it comes to Assembly. i absically want to just write a simple program which converts standard daylight savings time into military time, im aware that this is a simple taks but … | |
i want to draw all ascii chars and their corresponding values in dec and hex using a three colomned table, each colomn for one type of chars. if possible i would love to display each colomn in a different color. this is my code so far. .MODEL SMALL .STACK 100h … | |
hi there! i cant figure out how i could program a little function in assembly using the PCSPIM environment. the function i want to program with recursion is: func(n) = func(n-1) + (n-1) this is similiar to the fibonnaci function which is: fib(n) = fib(n-1) + fib(n-2) and the code … | |
Question... I'm installing windows 98 on a dell inspiron 8000 laptop. I just installed it and entered in the product code that I have and it gives me msgsrv32 and must abort. I cannot get past this and don't know what else to do...help anyone please | |
hello... I'm looking for a calculator program written in assembler... it needs to do all the basic functions of a calculator eg add, subract, multiply, devide... if anyone can point me in the right direction of where to find one it would be greatly apprecitaed...! thanx... neil... | |
Hi, every one MIPS assembly language program to do single-precision floating-point multiplication in software rather than in hardware. The procedure float_multiply should receive its input parameters in $a0 and $a1 (as single-precision floating-point numbers) and produce its result in $v0 (as single-precision float). You cannot use the floating-point multiply instruction … | |
Hi there, I'm currently coding an assembly calculator program to run on an MC68332. I'm doing most of the work on a 68000 emulator for the time being until I have everything as I want it. The program is fairly straightforward; I'll give a quick walkthrough below. User enters a … | |
Hello: I am a programmer. I work professionally primarily in C, C++. Most personal programming projects I do is in either C++ or Python. I am studying Java and Ruby currently. My quetion is: How valid do you find Assembly language in a modern sense, professionally or otherwise? I ask … | |
hi my friends. I need your help, I have to solve these three problems ASAP. Please help me with this: [U][B]1)###########################################[/B][/U] [COLOR=#000000]For a set of numbers read into an integer array (arr1) populate another array (arr2) with A*x2 + B*x + c, where A, B, and C are integer constants … | |
I need to create a Two-Dimensional Array in "row major"order and add up the elements of the row and return the sum in $v0. I know how to set up the data, i just don't know how to manipulate it to get the sum. And I cannot overflow the registers. … | |
I want to create a list, with about oh say, 8 or 9 elements.. I want to create a new node at the beginning, insert one in the middle somewhere, and then add one at the end. I don't know how to initialize this. I know how to build a … | |
Hi all, I am hoping that you could help me with this. I am working with assembly language 8086. I am trying to put integers into an array one at a time after a prompt. Something like this: Please input an integer: 6 Please input an integer: 1 Please input … | |
It's disappointing to see so many requests from students who come here looking for a free lunch. As a university student, you have plenty of time and resources to do your own homework. You would probably elicit many more positive responses from the resident experts if you at least made … | |
I have begun a new project in MIPS64 assembly language. I wrote MIPS assembly three times previously (and other MIPS CPUs too), but have pretty much forgotten the specifics. But I remember thinking the person who created the instruction set was "thoughtful" in his choices (quite an admission for someone … | |
[code] ; Description: Program to input a character and then output it to the screen ; Registers used: ax, dx .model small .stack 100h .data .code mov ah, 02h ; DOS function call 2, character output mov dl, 41h ; the character 041h (i.e.'A') mov cx, 26 ; start the … | |
I need a few lines PIC16F84A codes to turn a LED on for 5 minutes, assume Port A0 is an input SW and Port B0 is an output. LED only on for 5 mins when the sw is pressed and stop until the sw is press again. Please see the … | |
I need to create a little assembly app for arm cpu which reads two 32 bit numbers from the address which register r0 points out. Then it compares absolute value of those two numbers and puts them back to those same addresses the way there's number which absolute value is … | |
[COLOR=blue]Hello.[/COLOR] [COLOR=blue]For my assignments for uni, i have to create a program which will provide a answered based on the question answered using emu 8086 emmulator.[/COLOR] [COLOR=blue]so a question is provided, and based on you replying with yes, or no, a text answer is then provided.[/COLOR] [COLOR=blue][/COLOR] [COLOR=blue]eg. You feeling … | |
I am having trouble trying to get this machine language program to work with pep/8. Write a machine language program to input two one-digit numbers from the user, add them, and output the one-digit sum. Beacuse this program is at the machine language level you only should use character input, … | |
How to initialise rs232 serial port and send a byte in assembler language? | |
:) hi guys and family members of daniweb. i am doing computer system. I like to work you guys, my difficulty is based on digital systems using 8051,microprocessor 8086. i love to build projects using 8051 but my is obstacle are programming site. previous weeks ago i was having difficulty … | |
Does anyone know how I can read in a stored floating point number and convert it into a decimal/string format and then output it? I'm trying to mimic the floating point output bit of 2 but instead I need to use the string output form. Example: Fpnum: .float 3.14159 Start: … | |
hello everybody! i'm not good in english. i have a problem with assembly language. my teacher not teach me anything but he give me a homework. if i miss this homework ,i will fail in examination. i want someone to help. i want code in assembly language( file.asm ) code … | |
1-write an MIPS64 program to convert the two hex digit stored in location 0700H to two ASCII digits and store in locations 0701H(MSD).FOR EXAMPLE IF 0700H=A4H THEN 0701H=34 AND 0702H=41H I really appreciate your help thank you | |
Hi I have a little exercise that I was assigned. This is what needs to be done: - Read 10 numbers from keyboard. - Sort them by Insertion Sort algorithm - Print the sorted numbers in ascending order This is for MIPS and the program I use to run it … | |
I need help as to how 2 change machine codes 2 binaries or hex like mov to mayb 101011111, yeah, u know like own compiler | |
Hi, I'm just starting to learn about x86 assembly and was surprised at the seemingly small amount of registers. The 8 general purpose registers you always read about /use eac, ebx etc. . are they the only GP registers on a processor or are there others that depend on the … | |
i am just starting into assembly programming, i am currently trying to trace a program step by step to determine a value of a certain register for the particular line and unfortunately, i dont understand how it goes... i am working on this code i found from somewhere, it says … |
The End.