2,888 Topics

Member Avatar for
Member Avatar for silvercats

below links will lead to amazon links of the books I have a trouble deciding what should I use for learning assembly. any other suggstions than those two are welcome too.please answer only if you are experienced and know well about the result of learning from each books. http://www.amazon.com/Assembly-Language-Step---Step-Programming/dp/0470497025/ref=sr_1_2?s=books&ie=UTF8&qid=1338617001&sr=1-2 (new,but …

Member Avatar for silvercats
0
130
Member Avatar for silvercats
Member Avatar for silvercats

more registers or something? I know about the advantages and disadvantages of 32 and 64bit bit what is the big difference between processors?

Member Avatar for silvercats
0
175
Member Avatar for silvercats

Under what architectures do assembly programs run? I mean,what processors can run the same assembly program? program written for p4 processor,on a core 2 duo ,core i3 .and core i 3 on a p4,p2 etc...... program written for an Intel processor on a AMD processor..... and i7 and a core …

Member Avatar for silvercats
0
218
Member Avatar for EliStern

Hi! I am wondering what's wrong with my code. It's a simple code which is supposed to activate the PC speaker with a DO note. I'm using XPmode on windows7 ultimate 32B SP1, with EMU86 as assembler, runnig the program with CMD (tried also dosbox). The wierd thing is when …

Member Avatar for mathematician
0
490
Member Avatar for odaite

.please help me I want opearte the code program .model large .stack 4096 .data msg db 0dh, 0ah, "Demonisch Basic Assembly Language Calculator", 0dh, 0ah, 0dh, 0ah, "Press return when each number is entered", 0dh, 0ah, "(done automatically if 4 digits is entered)", 0dh, 0ah, "You may put + or …

Member Avatar for NotNull
0
259
Member Avatar for mercenary16

I am barely learning x86 assembly, and I am having trouble. How do I address the individual items in an array in assembly? This is my attempt, but I am very confused. char example( char arrayOfLetters[], int arraySize) // arrayOfLetters = {a, B, c, D, e, F} { ~asm{ mov …

Member Avatar for sbesch
0
346
Member Avatar for stompjrkz400

Hello i have a question ! ha, what is the diffrence between these two sets of code, my proffessor says there diffrent, i just cant figure out why, they both seem to do the same thing, this is my first time working with the coproccessor and im alittle stuck, thanks …

Member Avatar for sbesch
0
95
Member Avatar for stompjrkz400

hey everyone, im in my first semester of assembly, i had a quick quesiton, im working with the coproccessor now for the first time and i would like to know if The coprocessor stack holds all values as 80-bit reals then what is the largest integer data type that can …

Member Avatar for sbesch
0
194
Member Avatar for hanintalal

how we can write a program ,whech prints its oun source using NASM oder GCC on Linux und mac os x

Member Avatar for sDJh
0
180
Member Avatar for chibi-hime

Hi. I need help with the code for a fish race The question I was given is as follows: *You are asked to design a “Fish Race” game. Two fishes of different colors and shapes will race until one of them reaches the race’s end line. Your program should display …

0
144
Member Avatar for EliStern

I have a very long code line in ASM (a very long array declaration). Is it posible to break it into multiple lines? thanks!

Member Avatar for EliStern
0
174
Member Avatar for glowkazaf

Help!!!!anyone who has the idea of creating a simple assembly games!!!please!please!!!even without the codes..just the idea of what kind of game...It's important for me...It's for our final project in Assembly...Thank you!

Member Avatar for TheElitist
0
1K
Member Avatar for psycho_

Does any one know if I can find these problemes here ? 3. Problem #3 a. What will be the result of the following code if executed? Comment the assembler instructions MOV BX, 20A MOV AX, [BX+1] MOV CX, [BX - 2] CMP AX, CX JB cxismax SUB AX, CX …

Member Avatar for skaa
0
99
Member Avatar for lxXTaCoXxl

Figured I've been working on material for a while and would throw these up for everyone that needs them in the future to use. It's very simple implementation; if I get enough people asking me to, I will write the methods for each of the instructions so you don't have …

Member Avatar for skatamatic
0
277
Member Avatar for lxXTaCoXxl

I'm writing a basic application that needs to know the mathematical relationship between a jal and its address. For example: jal $000a2000 = 0x0c028800 So my question is how would I get this value mathematically? I've been pondering ways to do it all week and every route I took to …

Member Avatar for lxXTaCoXxl
0
114
Member Avatar for desijoker

hey guys .i am trying to write a lc3 assembly language program that takes two input numbers and prints out "x * y = z". i can get it to work for numbers 0-9 however any numbers above that i get weird letters or symbols. ^^ Also how i can …

Member Avatar for TrustyTony
0
3K
Member Avatar for itsmrshow

Hello all, i really need help with this program, i am a brand new assembly learner/ noob, i need help with a program that ( promts the user to enter a number between 1-10, then when the user enters a number, if it is less then 5 display message1, if …

Member Avatar for itsmrshow
0
142
Member Avatar for st_infamous

I got this delay routine while searching the internet for ways to introduce a time delay (4-5 sec) in my assembly program. I fed it into a HelloWorld program to display 'Helloworld' box message after 10 sec from the execution of the program. Here's the code .386 .model flat, stdcall …

Member Avatar for GunnerInc
0
140
Member Avatar for denny61302
Member Avatar for TrustyTony
0
47
Member Avatar for coderKid

Hi everyone i am new here and i have problem with this code, i need algorithm all code. please help me all master of Assembly :) program has a bug. not change AM to PM in the right time. please help me to change. thank you so much. :) especially …

0
104
Member Avatar for gspeach79

With this program I am supposed to **use ASCII operations to do addition and subtraction on positive integers of any length represented in characters.** I have no idea how to fix this program could anyone help me fix it? Thanks! include irvine32.inc .data msg1 byte 0dh, 0ah, "Enter a number:", …

Member Avatar for macanohost
0
173
Member Avatar for gspeach79

Basically I have to **copy array X to the stack frame and dump the stack frame on the screen before return from the procedure.** The problem is I have no idea how to do that. Also I am not even sure my program is right. I was wondering if someone …

0
117
Member Avatar for samoo

Hi everyone i am new here and i have problem with my project this is the project Use x86 assembly language to write a program that works as a following: 1) When the program is executed, it asks the user to enter a password 2) If the entered password matches, …

Member Avatar for angham
0
253
Member Avatar for kww228

Can someone help me out. I do not know how to dump the stack frame on the screen before return. This program currenlty just copies and outputs the array te the screen. Here is what teh program has to do: Given the data below, design an IA-32 assembly language program …

0
79
Member Avatar for kww228

Can someone help me out. I do not know how to dump the stack frame on the screen before return. This program currenlty just copies and outputs the array te the screen. Here is what teh program has to do: Given the data below, design an IA-32 assembly language program …

0
80
Member Avatar for Nimrod7676

Hello everybody, I'm using Ubuntu 11.10 and I don't know about assembler for linux, but I think there is. Do anybody know about Assembler for linux? Thanks. =]

Member Avatar for rubberman
0
138
Member Avatar for MasterHacker110

I want to start writing a os, but doesnt really know how. I need a simple boot and kernel to demonstrate how its done. nothing fancy just simple one that will boot and load a kernal. if it isnt to much work maby make it that is can hold files, …

Member Avatar for AceStryker
0
245
Member Avatar for MasterHacker110

My code gives this error: relocation truncated to fit: R_386_16 against `.data' section .text section .data text_string db 'This is my cool new OS!', 0 global _start global print_string _start: mov ax, 07C0h ; Set up 4K stack space after this bootloader add ax, 288 ; (4096 + 512) / …

0
84
Member Avatar for khanyisani

im trying to count a number of 0nes in an XOR output of binary numbers and need a control structure that will enable a register to increment it content. here is what i have so far TITLE number of ones in an xor output (XorOutputNumberOfOnes.asm) INCLUDE Irvine32.inc .code main PROC …

Member Avatar for pgcoder
0
118

The End.