3,896 Topics
![]() | |
![]() | i need to compile and run my assembly code on windows7 using MasM615..it normally compiles but doesnt created the .exe file..who can help me here please i dont want to run xp...i prefer windows 7 and linux ubuntu...i need solution for ubuntu too..Thanks Guys |
can any body tell me how first programming language was written.??and how processor understand that language i wanna know intrinsic subtle details pls help me if u can gie some nice refrences or explain it right here. | |
Can anybody little bit explain me what are different types of operands in assembly language ,I will be very THANKFUL to u guys. | |
Hey people. What I'm trying to do is get a String input from the user. And then displaying that string. I have no idea how to do it. I have most of the code figured out except that one part. Any help will be greatly appreciated! Thanks!! (By the way … | |
[ATTACH=RIGHT]16721[/ATTACH]A rather reputable source has tipped off the Economic Daily News in Taiwan that a 7-inch iPad could be in the works for a holiday release this year. iLounge first reported the tip in early August, albeit with a potential release date in early 2011. The source in question has … | |
Trying to progress in learning Assembly, but can't seem to figure out something. In an example source code, it stores local data and -4(ebp) then does a pushl on it. I don't know what its doing there? How can you push something on the stack? Here is the source code, … | |
Hahaha!! I never thought there is this section where I can introduce myself. I thought daniweb is just a forum full of geeks with no life. hahaha! I'm Just Kidding!!! :twisted: So I'd like to introduce myself to you guys because these past few weeks I started to be active … | |
Trying to write a puts like subroutine in assembly but failing miserably. I'm using BIOS calls only (I.E. I'm not running another operating system). The code is using Intel syntax. What I have so far is: [CODE=asm]; [BITS 32] [GLOBAL hello_world_asm] ; ; a very basic puts function without the … | |
Good day, my main goal is to create a bubble sort in assembly. You'll input n integer 0-9, (25 >= n > 0). Inputted in one line separated by spaces, then return carriage. So my question is how to accept integer stored in an array. Thank you. P.S. Can you … | |
i was wondering what exactly ORG instruction do? i know it sets where the program loads in memory,but how,when you disassemble a binary assembly file you dont see such a thing as org instruction,but when you run the binary file it gets loaded in that address you mentioned in front … | |
I am writing a very simple program that subtracts 16 bit integers. After the subtractions I want to view the registers' final values by using DumpRegs. The information displayed seems accurate for EAX, but EBX and ECX have values that don't seem to be correct. Why is this so? [CODE]TITLE … ![]() | |
found this code here: [url]http://www.codeguru.com/forum/showthread.php?t=435239[/url] [code] .model small .data q1 db "ENTER FIRST NUMBER: $" num1 db 5, ?, 5 dup(?) space db 10, "", "$" q2 db "ENTER SECOND NUMBER: $" num2 db 5, ?, 5 dup(?) msg db 13, 10, "ANSWER: ", "$" answer db "0000", 13, 10, … | |
Helo Guys, i need your help, because i am searching code to read string in assembler, but i can't found nothing if you can help me, thaks!!! | |
Hi everyone First post here on this forum. I'm awfully stuck in an exercice I have to complete as an assignment. I'm studying computer science and this has been my first year. This is what I am supposed to do: Your project consists of implementing the following C code: [code=c] … | |
how can i print numbers on the screen by using tasm | |
Hello All: I'm not quite a assembler developer (C# is my manner), this time I've been asked to come out with a md5 file cypher, can someone please provide some source code? I've tried using asmutils but no luck, please give me suggestions. Thank you very much. P.D: it is … | |
can anybody tell me what is this segment register, which is its purpose and how does it work ? thanx in advance! | |
Hi, I have a file in the project which is called as it is. [CODE] var stream = Assembly.GetExecutingAssembly().GetManifestResourceStream("WindowsFormsApplication2.ds.cdx"); var bytes = new byte[stream.Length]; var read = stream.Read(bytes, 0, (int) stream.Length); var molecule = MolImporter.importMol(bytes);[/CODE] How can I give the path of the file. I have given the path like … | |
I have recently been working on old Compaq Evos, they are a large build, just a little warning, don't accidentally misplace a screwdriver inside of one when playing with them, took me ages to find -__- | |
.model small .data x db 20 dup(0) y db "enter the nos $" z db 0ah, 0dh, "Sum is $" .code .startup mov ah,09h lea dx,y int 21h mov si,00h mov bh,00h l: mov ah,01h int 21h cmp al,0dh je l1 sub al,30h mov x[si],al inc si inc bh jmp … | |
I'm trying to create a Web Form Application for my class final. I downloaded the zipped file and extracted it of course. When I go to Data/Add New Data Source and follow the prompts in the Wizard I get to the screen that you choose your Database Objects, I get … | |
Hello! I am using Visual Studio 2010, I am a total newbie to ASP.Net and I am having trouble successfully adding the FreeTextBox component to my project. I am only trying to add it to a simple Hello World-esque project called WebApplication1, and I can't even get that to work. … | |
Hello, I am fairly new to all this and I am hoping somone can help. I am writing a C# application that requires use of the Clipborad for inter-process communication. C# has methods I can leverage in order to accomplish this: [CODE]Clipboard.SetText(string);[/CODE] Unfortunately, there is an unacceptable delay when using … | |
Name: Lisa Nickname: mommabear Height: 5'5'' Weight: 183 Hair: Auburn/Red Eyes: Green/ Lined with Brown Location: CO Age: 32 Hobbies: Reading, listening to music, my son, fostering dogs, hiking, camping, fishing DIY house projects, movies, sleeping, BBQs, The Biggest Loser, 2 Hrs a Day at the Y. Relationship Status: dating, … | |
I'm preparing for my ASM exam and I'm having trouble understanding the concept of passing parameters via the stack. Usually we must use local variables when writing recursive procedures. Here's a little code snippet that I'm unable to test atm: [code] procedure1: PUSH EBP MOV EBP, ESP PUSH EAX PUSH … | |
How can i generate assembly code using g++ ? | |
Hey everyone, i am new to the Pic 16f877 microcontroller and am having trouble doing analogue to digital conversion. can any one help me or even give me the codes. i would be very grateful. | |
This program you can say I've done the fist two,but the last three I couldn't do If you can help with I'm using TASM 1. Create file "data.txt" in your working directory. The file should have 10 numbers each between 0 and 100 and separated by a space. 2. Write … | |
hi, I need help for my project in tasm 1. Create file "data.txt" in your working directory. The file should have 10 numbers each between 0 and 100 and separated by a space. 2. Write code to do the following: a. search for the file; exit with error message if … | |
can anybody help me in writing a code for HID?? 'm using win7 | |
hey guys i need help counting punctuation marks in a user input string.. | |
I'm very new to C# and using Microsoft Visual Studio. I've been working with a new company for a few weeks and the development of their main website was outsourced. The backend of the website was developed in C# and I have already run into something I am stuck on. … | |
Erm, do I need Visual Studio in my Windows Server 2008 to make my website work? Somehow,I've set my Content Directory and my Visual Directory to the same folder with all my ASP.NET pages + codes inside but it doesn't work at all. Tried switching authentication mode to forms authentication. … | |
I am a 2nd year Computer Science and Engineering student from India .. My Computer Organization sir gave this statement while teaching implementing parameter passing using stacks mov Ro,20(SP) To me it looks to be incorrect ! How can you move an item to any location other than the top … | |
Suppose we've got two integer and character variables: [CODE]int adad=12345; char character;[/CODE] Assuming we're discussing a platform in which, length of an integer variable is longer than or equal to three bytes, I want to access third byte of this integer and put it in the character variable, with that … | |
Hello everyone, I am learning 16-bit 8086 assembly(for DOS). I would like to know how to make/draw/display VGA graphics with code, like making a "picture". I googled a lot, but I couldn't find anything to solve my problem. All I need is a code for 16-bit Assembly that draws/displays some … | |
Hi Im trying to get this code to fill in the forms (works without the code making the error) i have tried and tried but i have no clue can you please point out the problem and show me the solution or a fix i am being pushed to the … | |
Im having trouble understanding offsets in computer science. SO far i know that the segment registers work along with the offset registers like this segment_register:Offset_register. Not sure if this is right but would this be the same 0:10 where 0 is the start of a segment of memory and 10 … | |
model small .data x db "enter a no. $" y db "factorial $" .code .startup mov ah,09h lea dx,x int 21h mov ah,01h int 21h sub al,30h mov bl,0ah mul bl mov bl,al mov ah,01h int 21h sub al,30h add al,bl mov ah,09h lea dx,y int 21h mov bl,al l: … | |
Is it possible to call a different program to execute in DOS assembly the way Windows programs use a CreateProcess() method? That is, not in the same way a Windows program executes, but can a different program's execution be initiated within an assembly program notwithstanding the difficulty of handling the … | |
So, I want to do these operations using inline assembly. I'm using visual studio 2008 and I'm getting weird results towards the end. I think it has to do with the fpu register stack. norm2 comes out as garbage values, while c, b and a are what they are supposed … | |
Hi all, Well i write a c++ code right now and encounter the need of ASM to find out a specific hashing function. I don't know ASM really good, started learning it just for this case but can't find a good tutorial that explain pointers in ASM since if I … | |
Hey guys, my name is Ross. Im new to programming and i need some help with assembler. I have a menu with a number of options that the user can do. 1. The first one is the user must input a string of characters up to the limit of 25 … | |
when i try to add a new data source halfway through the add new data source wizzard it gives me this error ------------------------------------------------------------------------------------- un expected error has occurred error message: Could not load type Microsoft.visualStudio.DataDesign.SyncDesigner.SyncFacede.SyncManager,from Assembly Microseoft.VisualStudio.DataDesign.SyncDesigner.DslPackage Version=9.0.0.0 culture=neutral,PublicKeyToken=b03f5f7ff11d50a3a'. ------------------------------------------------------------------------------------- is there any way pass this because it will not … | |
[code] .model small .stack .data .code start: mov ah,1 int 21h mov ah,2 mov dl,0ah int 21h push ax mov ah,1 int 21h mov ah,2 int 21h pop bx add ax,bx aaa add al,30h mov dl,al mov ah,2 int 21h end start [/code] Ok guys?this is another addition program in … | |
Hi all i'm trying to make a plugin supported windows MDI application but my brain has stopped! i can't build algorithm! First of all my program will read dll's from plugin directory which is located at the same directory of my MDI parent application, i don't know what will i … | |
I'm new to assembly, and I've looked through the sources i know. Could someone please tell me what this means: move.l -8(%fp),0(%a0,%d0.l) I believe it translates to 21AEFF0800 00 10 000 110 101 110 111111110000100000000000 move long n=0 dest=? n=5 sour=? Followed by who knows what Thanks for your help | |
Intel is known for being…well, Intel. They have been making processors and the like for as long as anyone cares to remember and while they may be the current reigning champ in the desktop PC processors wars, the same cannot be said about the oh-so-popular “gadget” market. Intel is a … | |
Hi i am running linux and intel x86 cpu. I have been learning at&t asm using gcc and gdb and am trying to print the values of the fpu stack with no success. My code is: [code] .section .data #; Uninitialized data section output: #; Mem lable .asciz "The value … | |
I am rewriting in Visual Studio 2008 c++ an application written in VB.NET that successfully connects to an oracle 10g database using OracleDataAccessClient.dll. I am trying to utilize the same dll in the c++ app though very unsuccessfully. In the project's Property Pages, I have successfully referenced the dll. In … |
The End.