2,878 Topics

Member Avatar for
Member Avatar for Goalatio

Hey again everyone, it's been a while since I've posted here.. What I'm trying to do, is get the command-line argument and convert it to hexidecimal. Example, if the file is named 'test', you would call it with test 72 Or something similar. I have it working, but after MUCH …

Member Avatar for Goalatio
0
269
Member Avatar for losh177

Hi, I'm trying to manually translate 16-bit assembly intruction into the format Instruction Prefix-Opcode-ModR/M-SIB-Address Displacenebt-Immediate Data for an Intel8086. I'm having problems trying to figurit out when to use the respective values for the Mod, the R/M. If anyone could point a good book or site for this type of …

Member Avatar for losh177
0
150
Member Avatar for laguna92651

I am starting to write a assembly program for a mc68hc12. I will be reading a 8 bit signed number into PortA and outputting the results to 7 segment LED's, common anode. I will be using Port P to ouput the segments and PortCan to control the LED's displayed. I …

Member Avatar for chrisname
0
112
Member Avatar for splurchner

The following program is written in MIPS and is supposed to calculate values based on the input of an integer. When its run through SPIM I get an error on the last line that doesn't make any sense to me. If anyone can tell me whats wrong it would be …

0
51
Member Avatar for Japus

Hello I've got a project running at school where I've got to create Pacman, everything is going great. But I want to load an image to use as ghost, background or pacman. Currently it's a square which is pretty stupid. But how can I convert the image from jpg, gif …

Member Avatar for ov3rcl0ck
0
217
Member Avatar for kekekerush

Let's say you have some code in the .data section: [CODE]doodle db "*****,3,*****"[/CODE] Is there anyway to change the ,3, into something else? (Perhaps a smiley face or somesuch.) I was thinking if I had the registers all set up, I could do something like: [CODE] ~~assume there is code …

Member Avatar for NotNull
0
97
Member Avatar for yasser87

Hi guys and girls I am writing a program to solve a linear system equations using gaussian elimination method by taking the factors and storing them in a NxN+1 matrix, this matrix can take integer numbers as well as floating point numbers i need help in translating this program to …

Member Avatar for Nick Evan
0
154
Member Avatar for surfer2009

hello everyone. i am in a great need fo hamming disnatce code in nasm(8088). i will be very thankful

Member Avatar for jaodat
0
63
Member Avatar for Behi Jon

Hi, What is the problem of this program ? It should print intertech systems, but it doesn't do . This program must convert all letters of the string to lowercase character . [code] Page 60 , 132 TITLE A08CASE (COM) Change uppercase to lowercase .MODEL SMALL .CODE ORG 100H BEGIN: …

Member Avatar for Behi Jon
0
204
Member Avatar for riccardo-m

Hi, I'm trying to make a very simple program that will accept a digital input and respond by setting an output high. When the input goes low again, the output should go low and then after a short delay, a second output will toggle high then low. My code below …

0
60
Member Avatar for brando|away

im writing a win32 dll and i need a procedure in this format (C++): [code] int __stdcall procname(HWND mWnd, HWND aWnd, char *data, char *parms, BOOL show, BOOL nopause) [/code] so how can i do this? why won't this work (fasm): [code] section '.data' data readable msg db "Text",0 section …

Member Avatar for brando|away
0
156
Member Avatar for RehabReda

hi guys i want ideas of projects but new one and the project will be done in 3 weeks with a team of 3 persons any idea ?

0
67
Member Avatar for scriptkiddy

Hi, how is the system function done? Atm I am doing it like this: invoke ShellExecute, NULL, addr szopen, addr cmdexe, addr szparams, NULL, SW_SHOW But it requires the program to know the persons homedrive. Is there a system(); function that can be used in assembly? If so, what library …

Member Avatar for functionalCode
0
252
Member Avatar for functionalCode

Hey everyone I am trying to read a hexadecimal registry value from a registry key, I am opening the key and then calling RegQueryEx, but I can't seem to get it right. Can someone post an example. Thanks.

Member Avatar for functionalCode
0
95
Member Avatar for M.K_Soft

hi dears. i wanna sum two 5 numbers to gether. like 12345 + 12345 i used 3 proc. one for get. one for calc and one for print. i can get them but i cant calc them right. please help me.

0
40
Member Avatar for hookah

Write a program that accepts a string from the user. You can assume the length of the string will be less than 30 characters and only lower case letters are entered. Your program should then display the string in sorted order and determine if the string entered is a palindrome. …

0
68
Member Avatar for kungfu71186

I have a project where we have to "clean" a formula. So if [code] 17 + 18/abc454 * (9/10) [/code] is put in then it should output [code] 17+18/454*(9/10) [/code] Well i got that part and what i do is store it in a buffer (.space) because then i have …

0
45
Member Avatar for asmnewbie3

hey all, I'm just starting out with assembly in college and I wrote a program for an assignment to calculate prime numbers, and it works, however if you comment out the line in the code, it gives out this list of numbers: [CODE] 3 is prime 5 is prime 7 …

Member Avatar for NotNull
0
169
Member Avatar for chrisname

I'm still doing some cpuid code; but now I want to get the brand string. I've sort of got about half of it... If you have a browser that supports it; search for "/* relevant */" to seek straight to the relevant part of the code Important edit: if I …

Member Avatar for gusano79
0
117
Member Avatar for manhit45

I want to write using loop . I TRY AND TRY AGAIN BUT unsuccessful. Please help me. HOW CAN I DO THAT ? * ** *** **** ***** ******

Member Avatar for Tight_Coder_Ex
0
64
Member Avatar for heshanhhh

Hey guyzzz im in trouble ,ma project is this, Develop a thermometer that shows the histogram of the temperatures of last 12 hours. (-You may use the LCD panel as the display. -Current reading should be identified by blinking the current reading.) .................... my coding is working 100% and showing …

0
40
Member Avatar for NotNull

Give me convience or give me death! The would-be programmer is introduced in some way to what could be compared to a CS101 course. He is taught about algorithms, variables, procedures, recursive functions, data structures and arrays. One of the fundamental steps for any program development is ease of program …

Member Avatar for NotNull
0
145
Member Avatar for scriptkiddy

I am having trouble with the following script: [code] .386 .model flat, stdcall option casemap:none include \masm32\include\windows.inc include \masm32\include\kernel32.inc include \masm32\include\user32.inc includelib \masm32\lib\kernel32.lib includelib \masm32\lib\user32.lib ;adding all my libs .data nsv db "APPDATA", 0 ;i want to use this in getenv(); fnsv db 260 dUP(0) ; char fnsv[260]; ffn db …

Member Avatar for scriptkiddy
0
211
Member Avatar for magava

Hi.The following program shows switching from RM to PM and back.At the end it has to print "Hello".The problem is it doesn't show the message. Can anybody help me.Thank you. P.S. For compilation use these commands: tasm /m name.asm tlink /x /3 name.asm Here is my code [CODE].386p data segment …

Member Avatar for NotNull
-1
410
Member Avatar for Zege

We are currently using assembly language in one of my classes. I have to write a loop that adds up numbers and takes the sum, however at the end of the loop (when a user types in a negative number) it is supposed to start over... My problem is I …

0
41
Member Avatar for scriptkiddy

Hi, how is this done in assembly? [CODE=c++] ofstream writer("settings.ini"); writer << "launch: 1" ifstream reader("settings.ini") char buffer[MAX_PATH]; reader.getline(buffer, MAX_PATH); HANDLE hFile = CreateFileA(StubPath,GENERIC_WRITE,0,0,OPEN_EXISTING,FILE_ATTRIBUTE_NORMAL,0); memset(&overL, 0, sizeof(overL)); overL.Offset = 0xffffffff; //end of file overL.OffsetHigh = -1; WriteFile(hFile, Settings, strlen(Settings), &dwBytesWritten, &overL); CloseHandle(hFile);[/CODE] How would I split a string in assembly? …

Member Avatar for NotNull
0
1K
Member Avatar for lacompsr

The aim of the program was to Write a short assembly language program which creates a divide by zero trap and modify the isr so that you change the error message that the isr issues. stepintr.asm << the sample isr << built in system trap message he said. stepintr.asm contains …

Member Avatar for NotNull
0
156
Member Avatar for Neablis

Im writing a project in mips, and i load a bunch of inputs into memory. when i read them back out there in the same order except for the zero which ALWAYS get moved to the end of the array. I literally load the values straight into memory after reading …

0
52
Member Avatar for Tight_Coder_Ex

This procedure dispatches application defined event handlers and alternately executes default process for both standard or sub/super classed windows. Map is defined as follows. In most cases I define this table in .data, but in can be in .const also. I choose writeable memory as application can redefine characteristics. [code] …

0
707
Member Avatar for idlackage

I'm supposed to get a 4-digit number from the user, convert it to binary (and hex), then print it out. I have absolutely no idea where to start. I know the algorithm; taking the number, diving it by 2, repeat until the number reaches 0 and the remainders of everything …

Member Avatar for dan63043
0
170

The End.