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
~1K People Reached
Favorite Forums
Favorite Tags
Member Avatar for hellIon

hey guys can u gimme some links ,resources or codes.....which can show me how to use api in assembly 32-bit i am using masm32

Member Avatar for MosaicFuneral
0
113
Member Avatar for hellIon

i am using pelles c y am i getting these errors ? something wrong wid the winbase header file?? if yes then can u tell me from where should i download another one [code] #include<windows.h> main() { WinExec ("C:\\Windows\\Notepad.exe"); } [/code] C:\Program Files\PellesC\Include\Win\basetsd.h(17): error #2001: Syntax error: expected ';' but …

Member Avatar for Ancient Dragon
0
381
Member Avatar for hellIon

[code] #include<stdio.h> void main(int argv,char * argc[]) { int num1,num2; num1=(int)argc[1]; num2=(int)argc[2]; printf("%d\n",num1); printf("%d\n",num2); } [/code] wat output should i expect? is there something wrong wid this code? cus i am getting weird outputs

Member Avatar for Narue
0
151
Member Avatar for hellIon
Member Avatar for hellIon
Member Avatar for hellIon

hello everyone i have just started programming in asm i am learning 16 bit assembly from art of assembly by randal hyde i hav written programs in notepad but i want to assemble them can u give me some advice on how to assemble them(16-bit)

Member Avatar for SmokyMo
0
89
Member Avatar for hellIon

.model tiny .code ORG 100H HOST: mov ah,9 mov dx,OFFSET HI int 21H mov ax,4C00H int 21H HI DB 'hello world$' END HOST

Member Avatar for hellIon
0
90
Member Avatar for hellIon

can u guys pls tell me how to assemble a com file using masm32..... i am new to masm so pls give step by step instructions

0
76
Member Avatar for hellIon

hey guys i am using miracle c compiler on windows xp.... i am trying to figure out how does pointer to functions work..... i have gone thru many tutorials but all have them failed to compile.... [code] #include <stdio.h> int sum(int x, int y) { return x + y; } …

Member Avatar for Narue
0
129