Posts
 
Reputation
Joined
Last Seen
Ranked #626
Strength to Increase Rep
+4
Strength to Decrease Rep
-1
100% Quality Score
Upvotes Received
5
Posts with Upvotes
5
Upvoting Members
5
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
0 Endorsements
Ranked #2K
~42.3K People Reached
Favorite Tags
Member Avatar for fuyulight

Hi, Can you give a test to this code: .286 .model small .stack 1024h .code start: mov cx, 5 first: mov bl, 2ah mov bh, 1 call drawall loop first mov dx, 5 second: mov bl, 20h mov bh, 0 mov cx, dx call drawall mov cx, 6 sub cx, …

Member Avatar for Üzåír
0
21K
Member Avatar for danielleCSU16

Hi, Can you replace a part of your code for this one: mov ecx, SIZEOF msg ;initialize loop counter * I believe the issue starts here??? mov eax, OFFSET msg ;address of msg mov esi, eax ;esi points to start add eax, ecx mov edi, eax dec edi dec edi …

Member Avatar for untio
0
2K
Member Avatar for tanatos.daniel

Hi, I am not a C++ expert, but I think that when you call scanf you must pass a pointer. The problem is that first is a pointer to char (that is the right parameter), but you are passing a pointer to pointer to char. When you call scanf to …

Member Avatar for Ancient Dragon
0
542
Member Avatar for jack_7

Maybe I am wrong but this could be a first aproach to the solution: xorps xmm0, xmm0 movaps [rbp - 64], %xmm0 mov byte ptr [rbp - 63], 2 mov dword ptr [rbp - 60], 3103850762 mov word ptr [rbp - 62], 20480 lea r14, [rbp - 64] Please, forgive …

Member Avatar for untio
0
350
Member Avatar for neyoibarra

Hi, Can you tell me what means: passChar[i] - 1; I think that this expression has no effect. Maybe it must be: if(i > 0) { i--; passchar[i] = '\0'; } And, for obtaining a string, remenber to add a zero to the end: passChar[i] = input; passChar[i++] = '\0'; …

Member Avatar for nullptr
0
168
Member Avatar for Rahul47

Hi, I do not know your level of assembly in 32 bits on windows. I have written a Hello world program and can be compiled using the file build.bat of the masm32 package. May be it surprise you. This is the code: .486 .model flat,stdcall option casemap:none include c:\masm32\include\windows.inc include …

Member Avatar for Rahul47
0
1K
Member Avatar for takko

Hi, Well, it is the kind of bug that is repeated again and again. Look at these lines: mov dx, offset s1 int 21h jc readError openError: mov ah, 09h The program opens the file. The program reads the file and after "jc readError" it simply continues with the next …

Member Avatar for untio
0
246
Member Avatar for untio

Hi, First, thanks for reading this stuff. I am learning java. I recognize that I am a beginner. Last weekend I have coded a clock. Sourcecode is: import javax.swing.JFrame; import java.util.GregorianCalendar; import java.awt.image.BufferedImage; import java.awt.Canvas; import java.awt.Dimension; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.Color; import java.util.TimerTask; import java.util.Timer; import java.awt.BasicStroke; public …

Member Avatar for untio
0
212
Member Avatar for hellogoodday

Hi, I have neither used into. A have found this: [Click Here](http://www.ctyme.com/intr/rb-0032.htm) Cheers.

Member Avatar for untio
0
195
Member Avatar for Bhavya scripted

Hi, First, I am a beginner java programmer. I see in the paths of the files first // and after that /// I think that this can be wrong. Forgive me if I am wrong. Cheers.

Member Avatar for stultuske
0
217
Member Avatar for nova37

Hi, I think that it can be useful an example from Microsoft: [Click Here](http://msdn.microsoft.com/en-us/library/windows/desktop/ms682512%28v=vs.85%29.aspx) Cheers.

Member Avatar for untio
0
246
Member Avatar for SHINICHI

Hi, I think that in these lines: Account[] objAcc = new Account[10]; for(int i=0;i<10;i++){ new Account(i,100); } You create an array of Account, but inside the for loop you are creating once more ten Account variables that you don't assign. Maybe you want to use inside the for loop something …

Member Avatar for untio
0
903
Member Avatar for king03

Hi, First, visit this page: [Click Here](http://spike.scu.edu.au/~barry/interrupts.html) Now you employ the 09h to invite the user to press a key. You employ service 01h to read a character You test what is the character and employ the 09h with the apropiate message. Please, forgive me if I am wrong. Cheers.

Member Avatar for untio
0
177
Member Avatar for jontennyeah
Member Avatar for Icone
0
816
Member Avatar for syeda amna

Hi, May be, os.system() is useful to you: [Click Here](http://docs.python.org/library/os.html#os.system) Forgive me if I am wrong.

Member Avatar for syeda amna
1
566
Member Avatar for marvolo1300

Hi, I think that you need to change var c=document.getElementById("myCanvas"); Into var c=document.getElementById("canvas1"); myCanvas for canvas1. canvas1 is the id that you have done to it.

Member Avatar for rayidi
0
131
Member Avatar for jockfaire

Hi, The code in this place: [Click Here](http://www.java2s.com/Code/Java/Development-Class/DateDiffcomputethedifferencebetweentwodates.htm) Can be of some help. Cheers.

Member Avatar for jockfaire
0
109
Member Avatar for Cappagh

Hi, I think that this is a html problem. You can look at: [Click Here](http://www.echoecho.com/htmltext05.htm) To resize the text in the paragraph. Please, forgive me if I am wrong.

Member Avatar for JorgeM
0
191
Member Avatar for arie92

Hi, I don't understand your question very well, but I think that you need a public variable in every form from 1 to 4. You assign the value of input and you get its value from form 5 with a form1.yourvariable. Please, forgive me if I'm wrong.

Member Avatar for Jx_Man
-1
251
Member Avatar for Maria Jose

Hi, 1. If you like, you could use a macro to call range and border. Something like: macro mymacro x, y, b range x, y border b endm Saving a lot of writing. But I think that your code can be shorter with some loops. 2.You have started the calculator. …

Member Avatar for untio
0
128
Member Avatar for Maria Jose

Hi, First, forgive my possible errors. In your code there are a lot of calls to the range macro and after that an "mov ah, 09", a lea instruction and a call to an interrupt. I know that sometimes some of these is not present, but you could create another …

Member Avatar for Maria Jose
0
128
Member Avatar for bobejoe
Re: gui

Hi, You have my source code of a win32 calendar written with masm32 at: [Click Here](http://joseantonio.comule.com/misproyectos/src/windows/Assembly/JoseCalendar/) Cheers.

Member Avatar for untio
0
88
Member Avatar for BenzZz

Hi, I am learning php as probably you. I think that you need to use sprintf to format the string after LIKE. See: [Click Here](http://www.php.net/manual/en/function.sprintf.php) Please, forgive me if I am wrong.

Member Avatar for simplypixie
0
252
Member Avatar for predator78

Hi, If you are coding with Visual C++, then may be UNICODE is defined. You can try if I am right adding this two lines before any other one: #undef UNICODE #undef _UNICODE And, after that the rest of the code. Cheers.

Member Avatar for jbennet
0
227
Member Avatar for jdelgado08

Hi, Please, forgive me if I am wrong, but if you use another register instead of 8, you can increment it adding it 8. [CODE] mov r13, 0 mylabel: mov qword [r14+r13], rsi add r13, 8 cmp r13, YourArrayLimitMultipliedBy8 jb mylabel [/CODE] But you must realize that in this loop …

Member Avatar for jdelgado08
0
1K
Member Avatar for reemhatim

You need to realize that in this code: cmp eax,minVal jge Loop_stat a greater than minVal will cause a jump to Loop_stat and it will never be compared with maxVal. Cheers.

Member Avatar for untio
0
117
Member Avatar for nuliknol

Hi, You can use: CMPEQPS And to test if the result is all ones or zeros: MOVMSKPS. I hope that this can be useful. Please, forgive me. I have not read the number version of sse in the post.

Member Avatar for untio
0
86
Member Avatar for untio

Hi, Thanks in advance for reading this message. My problem is that I need to write a program that must list the pdf files in a folder that contain a text pattern. The user writes a text and the program list the files that contain the pattern. I know that …

Member Avatar for N1GHTS
0
186
Member Avatar for anders10

Hi, Please, forgive me if I am wrong, but I think that in the next part of your code: getint: popl %ebp movl %esp, %ebp movl $1, %edi call getinpos You really want to write at the first line: pushl %ebp I am wrong?

Member Avatar for anders10
0
217
Member Avatar for loveMii

Please forgive me if I am wrong: I use intel sintax and may be I am wrong. At this line: leal values(, %edi,4), %esi If it translate to intel sintax: lea esi, [values + edi*4] Or something like this, you need to realize that "EDI" has a random value. May …

Member Avatar for untio
0
1K