Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~2K People Reached
Favorite Forums
Favorite Tags

5 Posted Topics

Member Avatar for rockerjhr

to convert your code to C, firstly you need to separate your code - you have function so there are some part are common to all function - if you have parameter you have code like 8(%ebp) or C(%ebp) - and then try to translate each line to C then …

Member Avatar for BlZbB
0
274
Member Avatar for BlZbB

hello everyone I write project, there is problem in linking of my code [CODE] Error 1 error LNK2005: _str_list already defined in file1.obj string-test\file2.obj string-test Error 2 error LNK2005: _str_list already defined in file1.obj string-test\str.obj string-test [/CODE] think this is my code, anybody have any idea [B]main.c[/B] [CODE] int main() …

Member Avatar for WaltP
0
268
Member Avatar for ndalli

I think because you don't set ds register with data segment add this two line at the fisrt of your code segment [code=asm] mov ax, @data mov ds, ax [/code] like this: [code=asm] .model small .stack .data myNumber db 2 .code jmp start start: mov ax, @data mov ds, ax …

Member Avatar for jt_murphree
0
130
Member Avatar for BlZbB

hi i write a program to add a value in windows registry but it didn't work and doesn't add anything in registry, what's a problem? my assembler is masm32. and here is my code: [code=asm] .386 .model flat, stdcall option casemap:none include windows.inc include kernel32.inc include advapi32.inc includelib kernel32.lib includelib …

Member Avatar for BlZbB
0
291
Member Avatar for cwarn23

you can use Pelles C compiler, it's very nice compiler for c and free. Pelles C site: [url]http://www.christian-heffner.de/[/url]

Member Avatar for Kocmotex
0
539

The End.