3,896 Topics
![]() | |
Hi, I'm trying to construct a compiler for a really simple stack based language to learn how my computer really works, and to learn how to create a compiler. So far, I have never done anything in assembly (only higher level languages). Could you give me advice about the following … | |
hi i have a problem but i'm not sure if this post goes here or not. anyway here goes. i just started a course in chinese and the name is"huibian yuyan sheji" (for those that understand chinese) which translates to "compilation language and design". now i have typed the english … | |
[B]Description: [/B]An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately. [B]Parser Error Message: [/B]The directive is missing a 'assembly' attribute. [B]Source Error:[/B] [COLOR=red]Line 1: <%@ Register TagPrefix="cr" Namespace="CrystalDecisions.web" Assemply="CrystalDecisions.web" %>[/COLOR]Line 2: … | |
Hi all, I have an urgent problem..Plzz can anyone help me guys.. We are into a student management system project and we want to send E-mails to students once tehy are registered with us saying taht from so and so date teh course is gonna start. I am getting teh … | |
Hi , I'm Known As mike21091 On Just About Every Single Site I Use On The Internet , No Different Here . I'm A 15 Year Old Web Developer That Likes OS Development And Also Likes Application Development . I've Been Doing Web Programming For About A Year Now , … | |
HI! can you guide me about writting viruses in assmbly? tnx. | |
write a MIPS program that calculates d=a*b-a*c without using mult instruction --- just for practicing your MIPS assembly. [LIST=1] [*]• Hint: use loop of additions to replace mult. [LEFT][/LEFT] [/LIST]• Practice SPIM system calls to input values for a, b and c, as well as printout the value of d. … | |
I used to program in 68x assembly many years ago, I would like to learn x86 64bit assembly, any suggestions on a good book to purchase? :mrgreen: | |
Hi, Just looking for a bit of help with MIPS. I've written the following program but can't get it to run on PCSpim. Think I've done something wrong with the nextCh command as it keeps iterating again & again but can't figure it out. It's to convert uppercase to lowercase … | |
Hello all I'm a final year student in Computer Engineering and need ideas for my final year project... I need to write a practical Windows application in High level assembly....i need ideas on practial winodws applications that are suitable for HLA.... PLEASE HELP!!!! thank you!! | |
I am new to Microprocessor 8086. i should submit this assignment by today evening. I want to know how to write a C program that calls an 8086 assembly subroutine that divides a unsigned 2 byte number by an unsigned single byte provided the single byte number is NOT zero. … | |
hi all ,... iam making a simple disk editor , and i need a methode that convert from ascii to Hex representation thank u all | |
I am studying visual C++ and turbo assembly, can you help me how to using assembly in c++, thank you very much. | |
Name: Kanith Age: 67 Married: 50 years Retired: Electronic Engineer/Assembly of God Pastor Education: BA, MA, DMin Interests: History, Language, Guitar, Writing | |
Can someone please help me convert the following code to C? I am just learning C and this is too overwhelming... the java code basically reads in a file (specifically for this program, a text file or whatnot for assembly language code), and the program is a pretty printer which … | |
dear friend, i am just start assembly i am not known about assembly. please some one check my question and complete this. thanks Calculate the physical memory address generated by the following segment offset pairs. a. 1DDDh:0436h b. 1234h:7920h c. 74F0h:2123h d. 0000h:6727h e. FFFFh:4336h f. 1080h:0100h g. AB01h:FFFFh [B]anwer[/B] … | |
dear friend, i am just start assembly i am not known about assembly. please some one check my question and complete this. thanks Calculate the physical memory address generated by the following segment offset pairs. Answer: [B]anwer[/B] a. 1DDDh:0436h 1E206 b. 1234h:7920h 19C60 c. 74F0h:2123h d. 0000h:6727h 06727 e. FFFFh:4336h … | |
Hey guys- I have to write a program in C, a pretty printer, that will be used in formatting assembly language code. To run the input, a source file must be provided as input for the 1st argument. A 2nd runtime argument is optional and, if present, it must be … | |
I am passing 2 integers from C program to 8086 assembly subroutine and i am doing division operation in the subroutine using DIV function. I dont know how to return the quotient and remainder values from the subroutine to the C Program Help me please | |
Hey im a new member, bad at programing but atleast i try :cheesy: This multiply subrutine is part of of a bigger program with menu option, but if you can help me with this i think i can work the rest out. im having trouble displaying the value of the … | |
I am waiting for the release of HLA 1.82 before dumping any source on the CVS, however, all interested parties are invited to join the project {{ just let me know in what capacity -- developer, technician, project admin, etc. -- you wish to participate in }} to "kick around" … | |
This is an Assembly code and i want to know what the result for every instruction: AX and BX The code is: Mov ax, 0 Mov bx, -5 100: Inc ax++ Sub bx, ax Cmp bx, -10 Jb 100 Put ax Move ax, bx Put ax End | |
Hello Everyone: I am new to assembly and am trying to learn division and multiplication . I have the code below that I wrote to perform unsigned division, I have looked it over in detail but cant figure out what I'm doing wrong. Note that for division the divisor apparently … | |
.ORIG x3000 AND R2,R2,#0 LD R3,PTR GETC LDR R1,R3,#0 TEST ADD R4,R1,#-4 BRz OUTPUT NOT R1,R1 ADD R1,R1,R0 NOT R1,R1 BRnp GETCHAR ADD R2,R2,#1 GETCHAR ADD R3,R3,#1 LDR R1,R3,#0 BRnzp TEST OUTPUT LD R0,ASCII ADD R0,R0,R2 OUT HALT ASCII .FILL x0030 PTR .FILL x4000 .END | |
I didn't get any response on my last post, so I'll try one more. I can't figure out why the comparison is failing. I would like to be able to use the extended ASCII characters instead of intergers if the API allows it. Thanks. .data sec BYTE "Wie Viel",0 ; … | |
Hey there, This is my first posting, as for once in my life I need extreme help with programming. I can work C with a little magic, just assembler is just [B]NOT [/B] my cup of tea. I was hoping that my attempts will show through, yet there are numerous … | |
Now, Now, Don't laugh! I am still a huge Beatles fan (they rock). It turns out that Beatles write some songs (secretly), about computers as well. Who could have thought? ;) --------------------------------- * Write In C (Let It Be) * Eleanor Rigby * Yesterday * Unix Man (Nowhere man) * … | |
Hi, I’m doing a little project at the moment that’s centred around the optimisation of insertion sort. I removed the various stalls when possible, made various modifications and unrolled some loops. I got it down to about 14927 Cycles with a CPI of 1.007 when sorting 100 elements. Is this … | |
Is there someone who can help me with this ? I also put some comments with some questions as well. Thanks. [code] ; crypt3.asm This is supposed to making a registry key, but isn't. ; Compiles OK, but not working at present. ; Help from Paul Brennick, .386 .model flat, … | |
Hello Everyone, I Downloaded .Net Framework SDK 1.1 from [url]http://www.microsoft.com/downloads/details.aspx?FamilyId=9B3A2CA6-3647-4070-9F41-A333C6B9181D&displaylang=en[/url] site, But i was not succeded in Installing. I encountered following errors. Internal Error 2908.{1D377656-ACBB-44E2-BFEB-4CC6FB0FDA33} Internal error 2908.{CFF19309-EA6F-4C72-96F6-8FB0903F9366} Internal error 2908.{48F78E6B-EE61-4ACA-BC2C-00D89DFD1435} Error 1935.An erro occured during the installation of assembly TlbExpCode,version="1.0.5000.0",FileVersion="1.1.4322.573",Culture="neutral", PublicKeyToken="b03f5f7f11d50a3a"'.Please refer to help and support for more information … | |
Hello Everyone, I Downloaded .Net Framework SDK 1.1 from [url]http://www.microsoft.com/downloads/...&displaylang=en[/url] site, But i was not succeded in Installing. I encountered following errors. Internal Error 2908.{1D377656-ACBB-44E2-BFEB-4CC6FB0FDA33} Internal error 2908.{CFF19309-EA6F-4C72-96F6-8FB0903F9366} Internal error 2908.{48F78E6B-EE61-4ACA-BC2C-00D89DFD1435} Error 1935.An erro occured during the installation of assembly TlbExpCode,version="1.0.5000.0",FileVersion="1.1.4322.573",Culture="neutral", PublicKeyToken="b03f5f7f11d50a3a"'.Please refer to help and support for more information … | |
HEYZ CAN ANYONE GUIDE ME WHCIH PROJECT TO TAKE UP IN ASSEMBLY THAT IS MARKS GAININ....NEED UR HELP DEAR PEOPLE OUT DERE...LOOKIN FORWARD FOR SOME NICE IDEAS N HELP RELATED TO THOSE IDEAS....REPLY SOOONNNNNNN :lol: ;) :confused: | |
Can you help me solve this prob? 1) Write an assembly program that accepts 3 values of input and produce the largest as output 2)Write an assembly program that accepts 3 values of input and produce output in order of size largest to smallest? 3)Write an assembly program that prints … | |
What is the set of Instructions that equivallent to Push [si]? | |
hello, everyone. i'd like to learn asm on macintosh. my mac is an eMac g4 1,25 Ghz. if someone has links ? thanks. | |
I am using the command in my code to retrieve my drive types: "string[] drives = Directory.GetLogicalDrives();" and I get the error: C:\Documents and Settings\Robert W. Lipscomb\My Documents\Visual Studio Projects\WindowsApplication1\DirTree.cs(8): The type or namespace name 'Scripting' could not be found (are you missing a using directive or an assembly reference?) … | |
i have written the following codes to implement the tower of hanoi but it doesn't work properly..... i have spent almost a week to find out the problem, but i still don't know what's going on... can any one can help me ??? Really Thanks for your kindly help!! Below … | |
[COLOR=DarkRed][B]Q-write an Assembly code that read a student ID, Name, TMA1, TMA2, Midterm and Final....[/B][/COLOR] [U]The output of this programm should be like:[/U] ID Name Total of Marks Result 2345 ABCD 78 pass 2456 Bulin 30 Fail [COLOR=DarkOrange][B]The code:"i am not sure if the code is right?" you give a … | |
This is what I have and think it is correct but the result shows up as all spaces... Im lost... Any help would be great. Thanks 0:000> ******************** process_strings.dbg 0:000> da message *** WARNING: Unable to verify checksum for process_strings.exe 00404000 "You can't always get what you wa" 00404020 "nt" … | |
Guys.. See this code? is it right code or have it mistake?please advice in details, 1- By knowing the numbers: so i guess here the numbering is knowing mov AX, 2 mov BX, 2 mov CX, 2 add AX,BX add AX,CX put AX end 2- By entering the number enering … | |
Here are the control transfer instruction inerruot the sequential execution of instruction in memory and transfer control to some other point in memory either unconditionally or after testing the result of "CMP: instruction.. The Control Intructions are: 1-ja dest-----> Jump if above 2-jae dest -----> jump if above or equal … | |
Hi, I'm starter, my question is: how to get the current page number? Appreciate any response | |
I'm not a C++ programmer in the real sense of it, but my project involves gathering some data, store the data in memory with time stamp and later upload to the PC where a C++ algorithm will be used to manipulate it and then produce a graph of the manipulated … | |
Hi Friends, I did some labs in my college days with MASM! Now i forgot much of the things.But still i am eager to do assembly programming. Shall i dowload this MASM free? tell me how we can you effective this assembler? Thanks, Shahnaz | |
Can you still use BIOS functions win 32 bit programs? Thanks. | |
I receive the following 2 error messages when I attempt to Build my application, and I cannot resolve them. C:\Documents and Settings\Robert W. Lipscomb\My Documents\Visual Studio Projects\caller\trunk\Installer\Installer.vdproj Unable to find source file 'C:\Documents and Settings\Robert W. Lipscomb\My Documents\Visual Studio Projects\caller\trunk\bin\install\data.enc' for file 'data.enc', located in '[TARGETDIR]', the file may be … | |
Is there someone who could help me convert this to Tasm style. Thanks. [code] ; celsius.asm Nasm code ; Need this converted to Tasm style ; so I can help him BITS 16 ;16 bit instructions used ORG 100h ;start of .com program SECTION .text ;text section follows main: mov … | |
I've been programming in VB for a long time. I dabbled in C++ and C# for a while, I'm mostly involved in management right now and want to learn Assembly for a hobby. How can I get started??? |
The End.