3,896 Topics

Member Avatar for
Member Avatar for silvercats

what is the NASM-IDE used by most and what is the best one so far? provide a donwload link if possible

Member Avatar for Ancient Dragon
0
30
Member Avatar for reynaud0000

Hi guys i need a little help fast i have a calculator and its giving me some problems This calculator reads from a text file the result shows in the terminal but its giving me some troubles For one only the + operator works I cant use the overflow function …

0
146
Member Avatar for reynaud0000

Hi this my first post here XD Its like this i have the code writen but it gives me this error Segmentation fault (core dumped) Can anyone tell me why? [code] MAX_BUFFER equ 10240 ; Constante que sera' usada como tamanho maximo de cada linha lida do teclado (10kb) FICH_ABERTURA …

Member Avatar for Ancient Dragon
0
290
Member Avatar for sachintha81

Let me describe my problem as well as I can. I have a C# application program, let's call it App.exe. It references a DLL named A.dll which in turn references another DLL, namely, B.dll. However the way in which they are referenced is a bit different. In the code of …

Member Avatar for sachintha81
0
3K
Member Avatar for Nikhar

Firstly, I am not sure if this is the best place to ask the query. If no, please move it to the correct subforum. Now, coming to my doubt, an assembler converts assembly language into opcodes, right? Now, to perform the conversion, assembler needs a certain algorithm. Whats the algorithm …

Member Avatar for deceptikon
0
183
Member Avatar for silvercats

I used debugger(windows) to view a text file(20 bytes only). books says it shows the whole 128bytes section and we have to decide where our files end. Why does it have to be 128? why not only the file size or 512 or a 256 or something? Books calls the …

Member Avatar for Ancient Dragon
0
142
Member Avatar for lxXTaCoXxl

I'm trying to make my particles fade in my application using the alpha argument of the Color.FromArgb method but my math won't work because I have a nullable DateTime variable and the error it gives me is 'System.Nullable<System.TimeSpan>' does not contain a definition for 'TotalMilliseconds' and no extension method 'TotalMilliseconds' …

Member Avatar for lxXTaCoXxl
0
1K
Member Avatar for Zssffssz

Earlier when I came here I had only a minimal set of utilities and a WinXP comp.. Now i'm here and serious, with kubuntu (and Internet!!!!) and willing to learn all of that dd, mov, eax, and bochs stuff. Here is my delemia: I have a C++ Program, have no …

Member Avatar for Zssffssz
0
350
Member Avatar for jobojo

Using VWD Express 2008, GoDaddy Hosting, SQL Server, ASP.Net VB I am very new to ASP.Net and have been working on a site and at one point, everything worked properly on local server. However, I have uploaded the site to GoDaddy hosting and the log-in function of the site does …

Member Avatar for hericles
0
281
Member Avatar for FakeTales

Hey I currently have a demo shopping cart , it works great . the user can add whatever items they want to it. However now i want to add just the bookId's , quantity and price to my sql table to simulate an order taking place. the shopping cart code …

Member Avatar for FakeTales
0
427
Member Avatar for silvercats
Member Avatar for silvercats

I've dumped hexadecimals of a text using windows debugger. So if those hexa values represent every single character by a single hex value,does it mean its binary is that hexa's converted binary value and pc deals with that character using binary but assembly language and people convert and use it …

Member Avatar for thines01
0
167
Member Avatar for scottd82

Hi everyone. I am doing my homework for my computer organization class and I'm running into a small problem. Before I explain what I've done, what I expect to happen and what is happening, I want to assure everyone that I am not looking for an answer to my homework, …

Member Avatar for Schol-R-LEA
0
366
Member Avatar for dbwalters67

Hello, I am using Visual Studio 2008 to create a program that utilizes Window's API to interact with a window that pops up on an external program. I am trying to populate a ListBox with particular text using LB_ADDSTRING & LB_SETITEMDATA but I am not having any luck in doing …

Member Avatar for dbwalters67
0
319
Member Avatar for DeanMSands3

In my wayward youth, I learned a little bit of inline assembler in Turbo C. And that was fun. Then I got into DJGPP which came with GCC and Bell Syntax. And it was confusing. And I gave up. Fast forward 12 years. I'm 30, finishing a bachelor's in CS. …

Member Avatar for DeanMSands3
0
223
Member Avatar for goluhaque

So, I am interested in Web Dev(2/2.5 years), have been doing Algorithmic Proramming for something like 5-6 years, and have started with Assembly. AND, I don't think y'all need to know more than that. :)

Member Avatar for AndreRet
0
40
Member Avatar for samidha

[code] #include<stdio.h> #include<conio.h> #include<string.h> #include<stdlib.h> #define M 20 #define hr printf("\n----------------------------"); #define br printf("\n"); int mptr=0,pptr=0,sptr=0; struct input_code { char lbl[M]; char instr[M]; char op1[M]; char op2[M]; }input[M]; struct opcode_table { int num; char name[M]; int code; struct opcode_table *chain; }mot[26],pot[26]; struct symbol_table { int num; char sym[M]; int addr; …

0
149
Member Avatar for juce

Matrix given in memory to print the spiral in opposite direction from clockwise (left column down the right lower range, right up column, a series of upper left, etc. until you get to the middle) I'm new here, I have to write code for the task above in assembly,could someone …

Member Avatar for Hugo123007
0
2K
Member Avatar for JRE.A

I have a problem when adding 2 numbers in assembly because we are using hex. When add 4+5 (34h + 35h) the output is 9 but if I add 5+5 (35h + 35h) the output displays colon(:) or 3ah instead of 10. Here's the sample image when i generate the …

Member Avatar for thines01
0
227
Member Avatar for ChaseRLewis

I'm trying to learn how to use WPF but in the book I'm using it doesn't explain how to expose a custom control to the xaml document in Visual Studio. Visual Studio has some text about including the namespace but I haven't been able to get it to work. CustomCanvas …

Member Avatar for Momerath
0
193
Member Avatar for Desi991

Hi all my assignment is too add and multiply 32 bit signed numbers. [CODE]INCLUDE Irvine32.inc .data z BYTE "Enter first integer: ", 0 c BYTE "Enter second integer: ", 0 outpt Byte "The addition of two integers is: ", 0 val dword ? .code main Proc call clrscr mov edx, …

0
80
Member Avatar for JoderCoder

Firstly, this is not directly assembly question but quite close, it is machine code. I am asked to add two numbers using stack. The question was actually asking for [COLOR="Green"][COLOR="Red"]1. write a program that adds the numbers 2 and 9 together. The number 2 is stored in memory-address 300 and …

0
56
Member Avatar for pilipino93

HI, I've been looking for a long time now, for some simple ways to get the full path of a file in the same directory of my console and the console itself. The main purpose of my small project is to just locate a file and move it into another …

Member Avatar for pilipino93
0
1K
Member Avatar for rumencho

Hi all,I'm beginner in assembly language. I use TASM and it works well,but I should place all my .asm text files in /TASM/BIN directory ,because only there assembler see the files. and this is quite annoying,I want to have special folder for this purpose and place it whenever I want.

Member Avatar for amar.chukki
0
1K
Member Avatar for megan11

Greetings forum, I have an assignment for my architecture class which to implement a 31 backgammon game in MIPS assembly, I have done alot so far, and I have been using 2 arrays to display the board, I used 0s to indicate empty fields and other numbers for example 13 …

0
48
Member Avatar for BleepyE

Im using MIPS and im looking to display the numbers between two other numbers. For example; $t1 = 5 $t2 = 9 Display = 56789 Ive only just started learning the language so im still struggling to get used to it. Thanks

Member Avatar for BleepyE
0
144
Member Avatar for silvercats

I downloaded NASM and NASM-IDE.Is there any specific good IDE? I am going to need windows debug as book says.But there is no debug in windows 7. Where can I download? Any alternatives? DO you think learning assembly will be useful in 2012?

Member Avatar for AceStryker
0
190
Member Avatar for SamY

hi, i have been able to map the 1st 4MBs of the memory but now i am trying to create an allocator. it 1st checks for enought memory using the BITMAP method, then after that it allocates areas where the PDE and all its PTEs will stay. Now i need …

0
67
Member Avatar for stakeMyHeart

please help me. i dont understand this: Create routine to display * based on AL w CR AL=07 CALL 120 & RET output: ***** my professor said cr is call routine, that's all, he didnt tell us what does that mean help me please

Member Avatar for Zssffssz
0
342
Member Avatar for krokodajl

I have created Browser Helper Object. It works fine on IE7, IE8 and IE9. The problem is that on IE7 in add-on list my BHO has empty [B]Publisher [/B]field. On IE8 and IE9 Publisher field is not empty and has correct value. Why IE7 does not display publisher field? I …

0
65
Member Avatar for Aviplo

The following message came up when I tried to instal .net 2.0 on the window 7 'An error occurred during the installation of assembly. policy Microsoft.VC80.ATL.type="win32".version="8050727.1"."publicKeyToken"="1fc8b3b9a1e18e3b".processorA rchitecture="X86"'. Does anyone have any idea how to solve this problem?

0
93
Member Avatar for iPanda

I'm trying to check the length of a string, its the most simple way there is but for some reason it says the the length of the string is 14h [CODE] org 100h mov cl,len mov si,offset src mov di,offset dst rep movsb mov ah,0 int 16h ret src DB …

Member Avatar for dheaven
0
121
Member Avatar for ydan87

Hello all, I need to implement iterative (non-recursive) binary search in assembly. The array has 10 elements, starting from 0x10000100, in address 0x10000004 there's the element to search for, and the answer should be put in address 0x10000008 It should be for MIPS and I ran it in QTSpim Here's …

Member Avatar for rubberman
0
143
Member Avatar for kikic

Here I have code in C, I need help to translate this in assembly emu 8086. Please help me if you know. [CODE]#include <stdio.h> #include <stdlib.h> int main(void) { int **mat; // Pointer to pointer int rows, cols, i, j; printf("How many rows you want "); scanf("%d", &rows); //rows = …

0
109
Member Avatar for kkevinnnn

'Creating A Shared Assembly in .NET public class SharedObject Public Function Greeting(ByVal name as String) As String Return ("SharedObject says Hi : " & name ) End Function End Class

Member Avatar for thines01
0
111
Member Avatar for complete

Help me Convert this WPF to Silverlight I am interested in a Charles Petzold C# example that shows how to do a fisheye effect ( [url]http://www.charlespetzold.com/blog/2009/05/Realizing-a-Fisheye-Effect-in-Silverlight.html[/url] ). The XAML code samples are in WPF but I want to try this in Silverlight. When I try to create the XAML code …

Member Avatar for complete
0
183
Member Avatar for mohamed moamen
0
135
Member Avatar for asmfreak

hi can someone tell me how to write a code in assembly language to implement a simple countdown timer (only seconds) display on the command prompt screen? thanks

Member Avatar for lulabylove
0
15K
Member Avatar for lxXTaCoXxl

I'm trying to learn how to create plugins, the only problem is my friend only knows .NET, I know C# and can partially read .NET. Is there anyone in this section that can convert this all over to C# for me so I can truly study it? [code]Public Interface IPlugin …

Member Avatar for lxXTaCoXxl
0
193
Member Avatar for eoop.org

Hello :) I have written a os in C and assembly, but my os is only a text based os. How can i make it into a OS with GUI ?

Member Avatar for adityatandon
0
169
Member Avatar for naveedqadri

Dear Expert, Thanks for helping me. I am facing problem while deleting a company from my application. When I click on delete ([COLOR="Red"]on comp1.aspx[/COLOR]) it direct to other Page ([COLOR="red"]company_delete.aspx[/COLOR]) when i put password as in databse , Instead it delete it gives error of wrong password. ([COLOR="red"]company_delete_save.aspx[/COLOR]). I mean …

0
75
Member Avatar for naveedqadri

Dear Experts, Thanks for your time and help. [B]Looking for your HELP to resolve this issue[/B] My application (developed by some one) is using different DOCTYPE like html4.01 lose /strick , XHTML Transnational / etc and some pages do not have any validation. My application was running fine from last …

Member Avatar for naveedqadri
0
203
Member Avatar for squares86

It is from Chapter 10 of jeff duntemann's book on assembly language. I tried to write some code by myself but I can't get it to work properly. I need some insight please. [CODE] ;Library Name:hexasc_lib;used as library for hexasc.asm section .data DumpLin: db " 00 00 00 00 00 …

Member Avatar for sbesch
0
265
Member Avatar for konic2

Hi There, here is tricky (for me) issue: 1. Windows 7, SP1. 2. I have lots of C++ redistributales in C:\Wimdows\winsxs like 'x86_microsoft.vc80..' and 'x86_microsoft.vc90..'. So I do have them installed but when I check if I have them 'legally' installed using all possible uninstallers including native one I do …

Member Avatar for konic2
0
212
Member Avatar for hsetaknev

Hi guys, Am a begginer learning assembly .I am using Instruction set of 8085 for simplicity in the understandind. I've down loaded a soft called GNUsim8085.. I dont know how to load a loop n a simulator,and dont know how o input user values.PLEASE guYS tELL ME HOW IF U …

0
178
Member Avatar for squares86

I an a newbie to assembly language, been reading jeff duntemann's book, and I have been trying to write some code by myself too. There is an example in the book on converting binary values to hex values. I decided to re-write the code again by myself for self-practice but …

Member Avatar for squares86
0
163
Member Avatar for Cheda

Ok, I have a Windows 7 Ultimate 64 Bits system, so in the beginning, I couldn't use the Microsoft® Windows® Malicious Software Removal Tool because it says that it is not compatible with my system. Then I used the ATF-Cleaner and it was OK. Then I downloaded GMER and the …

Member Avatar for jholland1964
0
451
Member Avatar for kikic

I made a code in assembly 8086. I load matrix (array) in memory with dimension 3x3. but this code works just for this dimension of matrix 3x3. Could someone give me an idea how could i make it to work with dimension m x n? the array is loaded in …

Member Avatar for kikic
0
230
Member Avatar for kamyarn

Hi I want to read a string (Last name) from keyboard, concatenate it to another string (First Name) and then print it on screen. (Windows, EMU8086, EXE Template) First I declare the variables in data segment [CODE] msg1 db 0ah,0dh,"Enter your last name: $" ;prompt message msg2 db "Kamiar " …

Member Avatar for kamyarn
0
6K
Member Avatar for Locke123

So I'm tasked with writing a subroutine to access a certain element of an array. When the subroutine is called, the pointer that points to it is [bp+1]. How would I make it so I could access say the 10th element of this array in the sub routine?

Member Avatar for sbesch
0
183

The End.