3,896 Topics
![]() | |
I installed windowsxp repair pro 2007 , a software for keeping windows stable. I started running. After finished scanning, i click repair, a window pops up. Saying that "unhandeled exception occured, Common language runtime detected an invalid program" When i click details, it shows--- --------------------------------------------------------------------------------------------------------------------- See the end of this … | |
Ok so I have some works in MIPS and have never used it before. the works is that I should create 1000string by using 0-9, a-z(lowcase); under 10 characters. the string must start with an alphabet. and then.. sorting that ...(by using Quicksort...) Sorry.. I so foolish in MIPS. I'd … | |
Lately I have not been able to run Spybot S&D at all, I tried uninstalling it and downloading a new one but it didn't work. I have also been getting IE pop-ups for henti and some fake anti-spyware program. I was trying to connect my Wii to the internet with … | |
Good morning to all! In these days I am studying the Z80 Assembly Language. To practise myself, I usually use a simulator, but now I would buy it. How can I program this processor? Which assembler do you recommend me? Best regards, Angelo Luparello | |
Hello! I'm having problems figuring out how to extend the datapath and blocks used for ble and sgt instructions on MIPS32. After studying a bit I managed to code the instructions for ble and sgt: [CODE] slt $t0, $s2, $s1 beq $t0, $zero, less_equal //////////////////////////// slt $t0, $s2, $s1[/CODE] Any … | |
I'm writing a program using the LC-3 Simulator with limited instructions. I'm trying to solve the problem "n choose r" recursively. I'm having difficulty pin pointing where my programs going wrong. Any help would be greatly appreciated. [CODE] .orig x3000 ;Clear registers and r0, r0, #0 and r1, r1, #0 … | |
Is it possible to set 4 80x86 processors up each of the registers EAX, EBX, ECX, EDX storing 32 bits of a 256 bit variable? | |
Hi, I have a client whose ASP.NET website intermittently doesn't display aspx pages. When the pages don't display they get a [CODE]"The type 'Global' is defined in an assembly that is not referenced..."[/CODE] error message. They've spoken to their web host who says that the problem is fixed and then … | |
Hello. I just started with assembly. In my emulator (emu8086) this code work perfectly. But when i write it out to a floppy it doesn't work. I know that if i write out one letter at time, it works. Is it impossible to write this way? [CODE=asm]#make_boot# org 7c00h jmp … | |
I am making an interest calculation program and can't figure out how to get the integer number input by the user into a decimal number. For example I don't know how to make 5, into .05 in MIPS assembly language. I've tried div but I can't get it to work … | |
[I]Hello, this is my first thread. I'm a freshman in Computer Engineering and currently taking Intro to Computer Systems with Yale Patts & Sanjay J. Patel's book. I've been using this wonderful website to help better understand the computer language world. [/I] [I]We are currently beginning to write programs and … | |
Hello,i am new to the forums. I am in need of help.I have got 3 ASM's witch link together. I put the main one in the ASM to EXE (TASM is what i used) but instead of getting the file i need i get a error that it cant find … | |
can anyone please give me a simple code of an a86 assembly calculator that can execute +,-,*,/ functions... i really need help... hope anyone there can help me... thanks... | |
I have to make a program that takes a user entered deposit and interest rate and then calculates the balance for 5 years. I can't figure out what I'm doing wrong. I always use the deposit amount of 1000 and interest rate of 5 therefore for the five years the … | |
Okay I am trying to create a program that takes in 10 integers, then prints out the Max integer and the Min integer. The first loop reads in the 10 integers and the second one is supposed to print out the Max and Min integers. The problem I'm having is … | |
i have a te2100 toshiba model laptop,,the screen flickers every now and then and goes blank,,i took the lcd assembly off and put my friends assembly on and it did the same thing if i put the original assembly onto my friends it works fine,,,,does any1 know what can cause … | |
Hi, im interested in learning assembly... anyone know where I should start? | |
Hi all, i need an assembly 8086 code that compare between numbers from 1 to 99 and write output messege contain > or < or = can any body help me | |
.model small .stack 64 .data error_alpha db "Invalid input. Expression contains letter/s. ",13,10,"$" error_range db "Invalid input. Operand/s may be out of range. ",13,10,"$" error_overflow db "An overflow has occurred. ",13,10,"$" error_invalidinput db "Invalid Input. ",13,10, "$" redo db "Please enter a valid one.",13,10,"$" newline db 13,10,"$" inputlen dw 2 … | |
I am supposed to draw a box with coordinates UpperLeft(5,70) UpperRight(5,10), LowerRight(20,10) LowerLeft(20,70). I can't figure out what I am doing wrong. HERE IS ME CODE. [ICODE]TITLE BOX INCLUDE Irvine32.inc .code main PROC COORDS BYTE 5,10,20,70 UL BYTE 0DAh UR BYTE 0BFh LL BYTE 0C0h LR BYTE 0Dh VERT BYTE … | |
hello to all! :) i've a trouble in completing the very very very last code for my thesis in computer science. I'm playing with interrupt hooking in 16 bit DOS mode, but my code acts strange: ------------------------- ORG 0x100 ; old int21h mov ax, 0x3521 int 0x21 ; save it … | |
i'm newbie here.. i'm not a programmer.. i'm really interesting with this kind of application.. it's a chat application.. it is made with asm.. it has 4 button: Join chatroom, Leave Chatroom, Kick and Send Text.. can any1 help me to modify this application so there are new feature like … | |
I am trying to write a program using direct addressing and pointers on the number and create a 32 bit variable from 10136654 All operations will be done in 16 bit registers like ax, bx, etc. But how is this possible if it must go in 16 bit from 32 … | |
Hey I'm using MIPS and created a Fibonacci program and am not sure that its working correctly. When I enter 1 it returns 1 like it should and when I enter 0 it returns 0 like it should. However when I enter a number that takes it into the Fibonacci … | |
Im making a simple sort program in tasm but im not very good, Iv got it to work with numbers (as seen below) but i have no idea how to get it to sort a list of strings in assembly any help would be nice [CODE]title sort .model small .stack … | |
will pay 40 usd paypal to someone who can do these simple programs, up front. pm me | |
Hey there everyone.. I'm pretty new in this forum and also with Assembly, to be honest I haven't programmed anything in Assembly. I'm a VB Programmer and I work with some C/C++ But well that's not the reason I'm here hehe. On the forum I work at one of our … | |
Now i have been able to create the gdt's and when i change to pmode, will a short JMP flush the instruciton prefetch queue? here is a sample of my code and the gdt and gdtr content, [code] mov ax,07c00h mov ds,ax lgdt [ds:descr] ;switch to pmode by setting bit … | |
Hi, I am pretty new with assembly so please bear with me if this question sounds stupid :) I am teaching myself OS development from resources of the web. I came across this tutorial [URL="http://osdever.net/bkerndev/Docs/gdt.htm"]here[/URL] which talks about setting up GDT. I don't really get it when it is to … | |
Hey everyone, I'm new to ASM (only have some basics in coding), and I'd like to know if anyone could help me here. What I'm trying to do: I'd like to convert the letters (from a name entered) to ASCII, and add all their values. For example, [B]gbouchard[/B] would be … | |
below is my code.. i need to make this code read 3 digit and add it.. i know i lack a loop here.. i tried to make a loop but it didn't work. So here it is the original one that i made, that is working and reads one digit. … | |
I have an assignment due coming up and i am having a little bit of trouble. the purpose of the assignment is to reverse the values an array with the first value being the length of the array, I thought everything was done right but it won't reverse, actually nothing … | |
I'll tell what I know and then I will ask questions. Please correct me where I am wrong Suppose I have two cores in my CPU or 2 processors. What i know is that it is the duty of the operating system to give me a processor to execute my … | |
I have 25 years programming experience and am currently investing my time at trying to understand the visual C++ language. I am familier with several others. I find it very difficult to find someone who knows something about this language and is also willing to help. I completed a whole … | |
my first computer was a ZX81 way back in the early 1980s, so I have just bought one from an auction site with a 16k RAMpack and printer I am going to create a new Programming Language called ZX++ which will be Object-Oriented for the ZX81, easy to learn and … | |
Len_data Equ 14 Xcoord Dw 0 Ycoord Dw 0 Ascval Dw ? Dispdata Label Byte Xmsg Db 'x = ' Xascii Dw ? Db ' ' Ymsg Db 'y = ' Yascii Dw ? .code A10main Proc Far Mov Ax,2 Mov Ds,ax Mov Es,ax Call B10initz Cmp Ax,00 Je A90 … | |
Can someone help me undestand each line of code. I used emu8086 for this program.. Any help will be appreciated! Title Fibonacci series ; Fibonacci series ; ; Write a program that generates the first 15 integers ; of the Fibonacci series {1,2,3,5,8,...}. Beginning with ; the third element, each … | |
I need this translated in MIPS can anyone help me out? [CODE]#include <stdio.h> int n; int row[8], s = 0; bool safe(int x, int y) { int i; for (i = 1; i <= y; i++) if (row[y - i] == x || row[y - i] == x - i … | |
Hi, I'm new to assembler and I really need to make this work as it's crucial to my success in this course at college. Normally I wouldn't ask for help, but because time is such a factor now and due to my limited understanding of the language, I feel I … | |
[CODE]start: initIO * Initialize (required for I/O) lineout title continue: lineout skipln lineout prompt linein buffer * Get input cvta2 buffer+6,#4 move.l #2008,D1 sub.l D0,D1 move.l D1,D0 ext.l D0 cvt2a age,#3 Stripp age,#3 lea age,A1 * adda.l D0,A5 move.b #'.',(A5) adda.l #1,A5 move.b #' ',(A5) adda.l #1,A5 move.b #'*',(A5) adda.l … | |
hi..im a new member and i would like to ask for the code on how to convert a decimal value inputed as string,since all inputs in assembly are in string or character),to its hexadecimal equivalent..thanks.. | |
Hello from russia:) sorry for my english I'm lookin for asm programmers who has experience with bios programming in subject context. I don't know were to post this... i'm talking about money for onetime job. PM me please (also if u can recommend me someone) | |
I need an assembly program to add 12 bytes residing in locations starting from 2400H and store the sum in location 2500H (result space 2 bytes). For 8085 8 bit microprocessor. can anybody write the program????? Please that would mean alot to me thanks................. | |
I've been working on a program which reads in a sequence of numbers entered by the user. It's read in as a string and then converted to numbers. Then I am suppose to get the sum of those numbers and report it back. I got most done and I know … | |
I have to have an assignment in by thursday which asks to change lowercase to uppercase but I can only get it to change from uppercase to lowercase. I have tried everything I know and nothing will work. Here's what I have: .data str: .asciiz "HeLlO" ans: .asciiz "Uppercase String … | |
Basically for a class project/assignment we need to take another persons program in class and correct it for them, if they are good at assembly then your in luck if your person is bad like mine seems to be your screwed. Below is the exact code they posted, I've gone … | |
hey, basically I have an assignemnet to write a C and MIPS code to determine if a number is a power of 2 or not.(that is only a beginning part to the main core of this assignment which needs this code to be used later). I'm capable of doing the … | |
I am trying to understand SHR and ROR registers, the professor gave us some examples that I can't understand so I will make my own and hope I understand it better. If I had 1234h in the eax register for example, how do I know what the number would be … | |
i got an assignment it has to display the mouse pointer and at the same time the x and y coordinate. can anyone help me? i've found the codes for displaying the mouse pointer just got some problem with the implementing side. thanks a lot. | |
Hi, first time poster here. Well, I would like some feedback from those out there about getting into the development side (or any side) from my situation. I do believe I am somewhat of a techie. When I was in middle/high school I was using a tad of sparc assembly … |
The End.