2,888 Topics
| |
Hi!!! I have little problem. When i try to execute my program: section .data section .text global _start _start: mov ah,00h mov al,45h ;('45h' is just example) int 10h I get the message "Segmentation fault". I suppose I get this message because my video card it's new model. Ati Radeon … | |
[code=x86] org 100h section.text openfile: mov dx,sendfile mov al,0h mov ah,03dh int 21h mov bx,ax mov [filehandle],bx filelength: mov ah,042h mov cx,0h mov dx,0h mov al,002h mov bx,[filehandle] int 21h shr ax,7 shl dx,9 or ax,dx mov bx,ax mov [filediv128],bx mov dl, bh mov ah, 02h int 21h mov dl, … | |
Hi, I want to learn assembly and have looked at tutorials I found on google. It's really freaking complicated, so do any of you know of any good tutorials on assembly? I'm on Windows XP 32 bit with an Intel CPU. | |
Hello! 3 weeks ago I started to search the secrets of vesa programming... and now I can forwrd with this problem.. :( I know I learning very slow, but... I think the important is that I want to learn :mrgreen: So here is my code: [code] section .code start: mov … | |
Hiiii..... I want the C-code of an assembler which should have the MOT,POT,ST,etc tables used and also the use of location counters(LC). Can anyone help me???? | |
Hey guys, I am writing a program which reads in 2 floating point numbers from file and write the output to a file. The multiply part is very easy, but I can't seem to figure out how to write f loat to a file. | |
Hi I have 4 questions 1-Is it right that when you learn assembly you learn machine language,too?How? 2-What makes a programming language feature OS dependent? 3-Does Assembly have OS dependent feature?what about HLA? 4-How can i write an OS independent program(bootable programs)? thanks alot | |
Hi all! I'm learning Assembly by my own with FASM, but i'm having trouble running and compiling some codes... like this, for example: [CODE] CODE SEGMENT ASSUME CS:CODE, DS:CODE START: MOV AX, CODE MOV DS, AX CODE ENDS END START [/CODE] i get an error about the "CODE SEGMENT" one. … | |
hi every body i need your help please in a program in assembly i've to make a program that contains a listof names of students and theirs points (like: jack 15) and we order the list once by alphabetical order and the second time by descendent point please i need … | |
Hi everyone, got a slight problem. trying to make a program that takes the users input and puts it into a string untill it detects a CR character then outputs the string, i've made a start but i'm at a dead end on what to do. [code=ASM] BITS 16 ;Set … | |
I am working on homework for my x86 assembly class. The purpose of the program is to open an existing file and display the first 20 lines of the file and then pause, display the next 20 lines, pause, etc. until the end of the file is reached. My professor … | |
Hello! I just started trying to get the grasp of Assembly a few days ago, so I decided to write a program to print the Fibonacci numbers up to the 25th one. I'm using NASM, and it's for the x86 processor. I came up with this code, but it'll loop … | |
Hello Gyes! I am very new in Using emu8086 and i need a code about this Program Problem: I have to convert a Hexa input to a Binary Output using emu8086. 1. Hexa number will be placed in AL 2.And output Binary will come in AX+ DX, Memory address will … | |
hi everybody...i need to assembly code of 'type command (dos) '. can u help me please? | |
Hi im trying to make a program to the following specifications: 0) initialise a temporary numerical value to 00H, base value to 10H and count value to 00H 1) Read in a character 2) Apply series of checks against ‘0’-‘9’ and ‘A’-‘F’ and convert the digit to a numerical value … | |
Hi guys, I know whene we shift left, MSB is moved into carry flag. Is it possible to store the value in carry flag into a variable? What i want to is, multiply the bit in carry flag by some number. So that, once I have the bit in a … | |
Hi men could you introduce or even upload a PDF for me to learn x86 assembly language. thanks a lot | |
hi all, I have to register a dll in my application where i am using payment gateway. can anyone tell me the procedure of registering a dll on ftp. do we follow the same procedure as we do on our local machine. thanks in advance. | |
How likely is it that a newbie programmer in asm could mistakely cause hardware damage to the cpu etc by running some bad instructions. How likely is it ? | |
hi all, i got a program that calculates the fibonacci numbers and prints them out, looks something like this: main: li $s0, 0 li $s1, 1 loop: slt $t0, $s1, $s0 bgtz $t0, done addu $s2, $s0, $s1 move $s0, $s1 move $s1, $s2 li $v0, 1 move $a0, $s2 … | |
ok i know this is the command for reading an integer but where does it read the integer from? I got a factorial program, heres the beginning of it: [ICODE] .data prompt: .asciiz "you want n! for which value of n?\n" .align 4 n: .space4 i: .word 1 fact: .word … | |
can any one help me with this: to write a masm program to [U]calculate and display [/U]multiplication table of any number like 5 ? thank you | |
hi there,I'm stucked in trying to right the correct code for this assembly program, when i try to run it on DOS it's saying "EXTRA characters on line", i can send u the code if u wish to check...... | |
Hi All, Is there no possibility to find that assembly today. I am running VWD 2008 and would like to test a fade-effect example with that assembly. Waiting for your valuable reply! Thanks! Shun | |
I am having a hard time trying to figure out how to combine two arrays using MIPS. I have completed the code to populate 2 arrays and sort them, but now i need to combine them. I know i need 3 pointers, one for one array, another pointer for the … | |
| hello am new to assembly and i have a question abt the real mode segmented model !! ... how can i move the address of a variable that IS NOT in the data segment but in my Extra segment to a register .... cuz usually the mov instruction assumes that … |
Hello everyone. I need to know what FindResourceA is looking for. I am adding this function to prevent people from opeaning some aplications on game client. I'd like to see some exaples too. Could someone also check if this function look fine: [code] PUSH ESI MOV ESI,DWORD PTR DS:[<&kernel32.FindRes>; kernel32.FindResourceA … | |
Anybody know a good disassembler or general tool to convert an exe into a shellcode array? I don't really know what catagory this would fit in, but this seems the closest.. | |
Hello :) I am working on an assembly game (big task for an assembly newbie like me), and I'm wondering if it's possible to both keep time and wait for user input at the same time. This is how I keep time: get system time, save the unit for second. … | |
I am new in Asemply language and the little man so I would be thankful if someone shed me a light how to write a program and multiply 2 numbers together. |
The End.