Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
27% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
8
Posts with Downvotes
8
Downvoting Members
1
0 Endorsements
Ranked #3K

29 Posted Topics

Member Avatar for jingo1126

ok i have this problem in mind i wanted to try but i cant figure out whats wrong with my code..the program lets you input a string of integers then press another input as target..The target is then cmp to the string..the output should place lesser values on the string …

Member Avatar for Assembly Guy
0
5K
Member Avatar for Doctor Inferno
Member Avatar for jingo1126

[I]Not sure if this is the right place to post this.[/I] I'm currently working on my personal site, and was wondering how would I connect a desktop application to my site without entering my site on a browser. I'm not here to get any codes worked by someone but I …

Member Avatar for bakir
0
146
Member Avatar for jingo1126

btw any tutorials out there on how to create database with vb.net with mssql just to let me get started, i was hoping for a simple db to practice on like id,name. ive made db with php and mysql but vb.net is a bit far from php and mysql though …

Member Avatar for Luc001
0
115
Member Avatar for ctaylo21

try this site [URL="http://flashgameu.com/"]http://flashgameu.com/[/URL] it really helped me alot in creating flash games, from beginner to expert best tutorial ive found so far, ive learn most in that site. And made a couple of games as my project in school..

Member Avatar for janiquebroune
0
129
Member Avatar for Brandlax

[QUOTE=Brandlax;1253611]ok, i am relly messed up...im currently developing a flash game..and there in frame 1, i have many instances (movieClip), event listeners, etc. But the problem is, when i tell it to go to the next frame, it shows an error saying this cannot be found or other things... how …

Member Avatar for keshavgarawal89
0
197
Member Avatar for jingo1126

im currently running on windows 7 and i cant seem to find some suitable installation of mysql for python 3.1.2.. any help on this?my professor havent gave me any links on where to download it, anyone would mind helping me on this? or as i tried import mysqldb and i …

Member Avatar for Reverend Jim
0
109
Member Avatar for jingo1126

hello guys? i was recently studying how ajax work, problem is i followed some codes on the net and check if they work..they work on the site,but the time i tested those codes it wont work anymore..any ideas?ive tested js and it works on my browser... [code] <html> <head> <script …

Member Avatar for jingo1126
0
114
Member Avatar for jingo1126

[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 …

Member Avatar for Leeron2009
0
942
Member Avatar for bilalqasim

lol ofcourse his not.. he just started posting to get a code.. he did'nt eve try coding it yet..

Member Avatar for steventaal
0
125
Member Avatar for jingo1126
Member Avatar for jingo1126

guys?is it even possible that once i created a file already with my program then execute that program again wont create a file anymore?.. like q.txt then its created..but when i execute my program again and type a string to create a file like w.txt..it doesnt create the file..theres a …

Member Avatar for jingo1126
-1
150
Member Avatar for jingo1126

first things first..i still have my exe file that the program works.. i was just putting labels to my program then the next thing happens it does not work anymore except for the terminate program.. if some of you guys have time please recomplie it and test it in your …

-1
71
Member Avatar for jingo1126

guys?i need myself to make a project using tasm to be passed next week on friday. what i ve learn so far are int 21 and slight of int 10..but will learn most if needed in my project..i was thinking of file manager?is it complex to make or not?my teacher …

Member Avatar for jingo1126
-1
160
Member Avatar for fma_circuit

We wont help you, try doing the heavy doing and research by yourself..codes are given for those worth giving for..you haven't tried coding them yet..

Member Avatar for NotNull
-1
122
Member Avatar for jingo1126

guys wondering how come the code doesnt work.. im using tasm as u might know..im checking on things work and want to see what its output be..thanks hope you can help me with this one. i tried converting it tasm but say argument needs to be override. [code] .model small …

Member Avatar for NotNull
-1
154
Member Avatar for jingo1126

guys need help says when executed.The syntax of command is incorrect.. i dont where i went wrong..here is my code.. [code] .model small .stack 100h .data file db "TEST.TXT",0 ; File name new db "Rename.txt",0 ; New name dir db "D:",0 ;Current directory .code start: mov ax,seg dir mov ds,ax …

Member Avatar for jingo1126
-1
1K
Member Avatar for jingo1126

ive been wondering why wont codes make a file [code] .model small .stack 100h .data buffer db 10,?, 10 dup(' ') .code start: mov ah,1 int 21h cmp al,"1" je input jne finish input: ; will input string i.e "qw.txt" mov ax,seg buffer mov ds,ax mov dx, offset buffer mov …

Member Avatar for NotNull
-1
308
Member Avatar for jingo1126

guys need help says when executed.The syntax of command is incorrect.. i dont where i went wrong..here is my code.. [code] .model small .stack 100h .data file db "TEST.TXT",0 ; File name new db "Rename.txt",0 ; New name dir db "D:",0 ;Current directory .code start: mov ax,seg dir mov ds,ax …

-1
72
Member Avatar for Nathan Campos

well im using tasm..but i think tasm is really kinda old..i might try using masm..anyone knows the difference?the coding structure looks kinda same but the registers use are different..guess im going back to square one learning masm.. :D

Member Avatar for NotNull
-1
93
Member Avatar for jingo1126

guys? im creating my own program..first im using tasm.. my problem is i have the code for cursor.. [code] ;set cursor location(dh,dl) mov dl, 16 ; column. mov dh, 16 ; row. mov ah, 02h int 10h ;symbol of cursor mov al, 'x' mov ah, 0eh int 10h [/code] my …

Member Avatar for jingo1126
-1
4K
Member Avatar for rvaiksaar

correct me if im wrong..from what i learn in assembly ,we use these so called interrupts that is use to interrupt the processor of your computer every time theres a code that wants to process in your computer..i think those are system file need to run for your pc to …

Member Avatar for rvaiksaar
0
113
Member Avatar for mgyucht

i think your coding for tasm..i havent learned masm..i think your problem is with start.. the code suppose to be like [code] .model small .stack .code start: mov ah,2h mov dl,2ah int 21h mov ah,4ch int 21h end start [/code] you just lack ":" on start..

Member Avatar for jingo1126
0
549
Member Avatar for jingo1126

ok i can inverse the code like 1234 to 4321..but when i applied jmp and cmp i dont know what goes wrong with my data.. code without loop [code] .model small .stack .data .code start: mov ah,1 int 21h push ax mov ah,1 int 21h push ax mov ah,1 int …

Member Avatar for mathematician
0
104
Member Avatar for dharen

no one can help you if your not even showing how to code your program..sorry pal, we can help if you show your program..read forum rules..

Member Avatar for dharen
0
37
Member Avatar for maricel91

first you need to try making the code for yourself..we just dont give codes here for easy get away without you showing an effort for making the code yourself..read the forums rules before posting..

Member Avatar for jingo1126
0
48
Member Avatar for Nathan Campos

im using tasm if ur looking for tasm program heres alink.. [url]http://www.phatcode.net/downloads.php?id=280[/url] hope u guys gve the link of ur assembly programs as well if there is any.. thanks

Member Avatar for NotNull
0
110
Member Avatar for Nathan Campos

i feel the same way on how nathan feels..wildgoose help me with my assembly problems too, and even let me think after him giving some of the codes and left some important code for me to solve for..

Member Avatar for Dave Sinkula
0
103
Member Avatar for jingo1126

ok im kinda new to this forum and new to assembly as well. i was given a homework on tasm if someone could help me fix or add or delete some codes in wat ive place thank you very much.. program is about adding two input charactars like 1+1=2. ive …

Member Avatar for wildgoose
0
181

The End.