2,888 Topics

Member Avatar for
Member Avatar for destruct0

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 …

0
77
Member Avatar for bobrien314

[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, …

0
88
Member Avatar for TheBeast32

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.

Member Avatar for Narue
0
191
Member Avatar for tojas

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 …

Member Avatar for lewiscowles
0
263
Member Avatar for ronjbull

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????

0
68
Member Avatar for alkeshtech

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.

Member Avatar for rahul8590
0
97
Member Avatar for massivefermion

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

Member Avatar for BestJewSinceJC
0
116
Member Avatar for Ronen444

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. …

Member Avatar for rahul8590
0
148
Member Avatar for adling11

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 …

Member Avatar for rahul8590
0
72
Member Avatar for midimatt

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 …

Member Avatar for rahul8590
0
114
Member Avatar for Matt23488

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 …

Member Avatar for Matt23488
0
189
Member Avatar for shadwickman

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 …

Member Avatar for shadwickman
0
2K
Member Avatar for mahafuz_eee

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 …

Member Avatar for mahafuz_eee
0
94
Member Avatar for lostname

hi everybody...i need to assembly code of 'type command (dos) '. can u help me please?

0
42
Member Avatar for fortune2k

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 …

0
97
Member Avatar for alkeshtech

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 …

0
73
Member Avatar for massivefermion

Hi men could you introduce or even upload a PDF for me to learn x86 assembly language. thanks a lot

Member Avatar for ddanbe
0
142
Member Avatar for vipinsgangwar

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.

0
63
Member Avatar for rom87

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 ?

Member Avatar for MosaicFuneral
0
58
Member Avatar for ssDimensionss

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 …

Member Avatar for MrSpigot
0
101
Member Avatar for ssDimensionss

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 …

0
80
Member Avatar for waqar711

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

Member Avatar for waqar711
0
75
Member Avatar for shevy24

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......

Member Avatar for rahul8590
0
523
Member Avatar for shunnet

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

0
57
Member Avatar for comprogrammer

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 …

0
46
Member Avatar for maveee

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 …

0
40
Member Avatar for PeKa

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 …

Member Avatar for PeKa
0
137
Member Avatar for shea279

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..

0
68
Member Avatar for chocoglass

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. …

0
67
Member Avatar for Mr.MJ

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.

Member Avatar for Mr.MJ
0
127

The End.