3,896 Topics
![]() | |
Hi all, I've spent hours on this and could not get it to work. There also does not appear to be too much help on the subject online so I'm hoping you can help me! I am implementing a Binary Search Tree in MIPS assembly. I'm having trouble with my … | |
HI... would anyone give me some ideas in converting decimal to binary...?...i have some ideas but its hard for me to implement it...i just came up with the wrong code...i'm using a86 assembly language... . | |
i need help in comparing a string... the program goes ... ask to input 2 string then compare it, if it is same or not... my problem is that even it is not equal it will print equal... i think the problem is in the compare section. could someone share … | |
H all, I am intersted to do home based freelance programing work. Can anybody give me some idea of which areas of prgramming ( e.g C, C++, assembly, Java, device drivers, web development, database...etc) are the most rewarding and what are the payments rates being offered ? I visited elance … | |
we are ask to do some sort of virus using ASSEMBLY LANGUAGE masm16... can someone help me? pls,pls,,tnx! | |
hi there friends i'm trying to sort words by the abc in assembly for the first run it goes well but in the second it misses up and goes in non ended loop. if any one can help i will be thankful for him. [code=assembly] mov cl,[act] check: mov bx,0 … | |
I have recently started to learn assembly and I keep on coming across a certain syntax which i don't fully understand and after spending hours researching I find the syntax in code but no explanation so I was hoping someone could explain. I see it in many instructions but for … | |
i am new to assembly programming,can anybody help me out to solve this problem - i have a assembly code which does the atomic increment [code=assembly] Atomic_Add (volatile unsigned int *addr, int additive) { register unsigned int previous; __asm__ volatile ( "pushf;" "cli;" "movl (%2), %0;" /* previous = *addr; … | |
I need people to help me develop and beta test my opearting system. I was looking in the job section of the forum and this a not paying job just when people got spear time and know assembly language which is compiled in NASM and i don't know where to … | |
Hi! I am totally new to assembly. I am trying to learn assembly programming specifically boot sector programming. But I've seen every assembler has it's own syntax of assembly. Plz tell me which assembler would be best for x86 boot sector programming and how to learn the assembly for that … | |
Hi, guys If you open [url]http://support.microsoft.com/kb/310674[/url] link, you will see there are several ways that make using references in a Managed C++ application. I tried all of them, but i still cannot see the object of the dll reference project. My project is a mixed mode project which contains normal … | |
Hello, I am currently working on an x86 32-bit tutorial intended for people who already know imperative high level programming languages such as C/C++ and want to learn how to program in assembly. I tried to cover several operating systems (Windows, Linux, BSD) and various assemblers (MASM, FASM, NASM, gas) … | |
Currently I am running the AMD 64 X2 Dual Core Processor 5000+ with Windows Vista. I am new to assembly but have been reading a book on it for a while and am coming to grasps with how it works. The problem is, the book I am reading is from … | |
I wans wondering if I could get some information on using win32 interrupts and making win32 system calls. I found the interrupt list for windows nt ([url]http://www.ctyme.com/intr/rb-4249.htm)[/url], and Linux ([url]http://www.ctyme.com/intr/rb-8144.htm)[/url], but I'm still unsure about the correct windows interrupt. I'm working on windows XP, but will also be working on … | |
[INDENT][COLOR="Green"]Guys, we are doing a project in our assembly language subject, and it's a miniature stoplgiht project using the printer port as a power source... Can you please help us what syntax should we use in our project... And also can you give some url,e-books where we can learn how … | |
Dear All, would you please tell me in brief that " What are the applications of Assembly Language where any high level language becomes insufficient". Kind regard | |
Hi All, I need to convert a Assembly Code to high level languages such as C/C++, C#, .Net vs vs. I found a [URL="http://www.microapl.co.uk/asm2c/index.html"]website [/URL]that converts it but with very very high price. I am looking for a simple program which tries to convert assembly to high level language. I … | |
Ok, I know I'm still new with assembly, but I can not find an operand for division even though I've searched in the assembly help contents and online btw I've looked at some other posts which has something like mov and div but I don't think they work maybe my … | |
OpenWatcom has a very nice feature in its C language which allows you to code assembly language procedures/functions that you can pass parameters to, receive return values and whose register usage is integrated into the C code optimization. Compare this with the classic MS construct `_asm` and `_asm {}` which … | |
Write an 8086 assembly language program that will read a single byte arbitrary hex value declared in the data section of the code, convert this value into decimal, display it on the screen and then exit back to DOS. For example, if the value defined in your data section is: … | |
Hi, this is my first post on this forum. I am attempting to learn how to work with DirectX and make a game (Visual Studio 2005, C#). I found an extensive tutorial on DirectX games, but I can't find a necessary reference. Here is a link to the tutorial: [url]http://blogs.msdn.com/coding4fun/archive/2006/11/02/938703.aspx[/url] … | |
Hi all, I,m reading "Art of assembly language" and author says that he had included a library files on a companion cd-rom, but I had downloaded the book for free on the internet and now i don't have these files,can you help me to find them? | |
I used a guide from Ticalc.org. ANd the assembler gave me this code, could someone please tell me what's wrong? I have all the requirements that are required for TASM. Heres the error that MS-DOS had given me. C:\ASM\TASM>asm hello ==== Now assembling hello.z80 for the TI-83 Plus ==== TASM … | |
hi! i'm starting to program in asm (i have a school project). i'm programming in intel asm for an 8088 simulator (the one in tanenbaum's "structured computer organization" book) i have a question: is it a mistake to write subroutines that use variables to store (intermediate and return) values? shouldn't … | |
Hi, I would like to detect when a person loggs off or shutdown or restart using 8051. I can't get any information on the web if eny1 have any idea please let me know. This is a process where I will detect when the user shutdown or log off, this … | |
Hi everyone, I'm trying to write a server application, but I'm having a bit of trouble. I keep getting this error [CODE]The name 'srvr' does not exist in the current context[/CODE] I'm pretty sure I know what the problem is, but I don't know how to fix it. I have … | |
hi! in my 8088 asm program i'm reading some text from stdin thru the [icode]GETCHAR[/icode] syscall (117), and then i have to write that text into a file, using [icode]WRITE[/icode] (4) it seems to me as there are two approaches: the first is to format the chars as a string … | |
Is there a way, in Assembly, to convert a string to an int (number)? | |
I've written the following program [code=assembly] ;print string using bios service [org 0x0100] jmp start message: db 'hello world' start: mov ah, 0x13 ;service 13-printing string mov al, 1 ;subservice 01-update cursor mov bh, 0 ;output on page 0 mov bl, 7 ;normal attribute mov dx, 0x0A03 ;row 10-column 3 … | |
hi! i'm doing a university project in asm using the assembler found in tanenbaum's book "[i]structured computer organization[/i]"([URL="ftp://ftp.cs.vu.nl/pub/evert/"]ftp here[/URL]), which produces code to be run on a [B]8088[/B] emulator (s88) so, what i wanted to ask is: say i want to call a subroutine that needs some variables. the most … | |
hi, I open a Existing excel sheet and do something and then want to close this excel sheet and open a new excel sheet and work on it. Code:manip.vb OpenFileDialog1.Filter = "Excel files (*.xls)|*.xls" If OpenFileDialog1.ShowDialog() = Windows.Forms.DialogResult.OK Then ExcelDoc = New ExcelEx(OpenFileDialog1.FileName) Else Exit Sub End If ExcelDoc.close() GC.Collect() … | |
please help me how to program a timer using assembly language in PIC 16F84A. | |
hi, I open a Existing excel sheet and do something and then want to close this excel sheet and open a new excel sheet and work on it. Code:manip.vb OpenFileDialog1.Filter = "Excel files (*.xls)|*.xls" If OpenFileDialog1.ShowDialog() = Windows.Forms.DialogResult.OK Then ExcelDoc = New ExcelEx(OpenFileDialog1.FileName) Else Exit Sub End If ExcelDoc.close() GC.Collect() … | |
I am getting errors when trying to compile the following code. [CODE]Public Class frmMyFirst Private Sub frmMyFirst_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Click Dim strName As String strName = InputBox("Enter your name and click OK.") lblHello.Text = "Hello " & strName & "." End Sub Private Sub … | |
Hi everyone!Can you please help me with my project.My problem goes like this: I have to make a bcd coded program in finding the modulo of a number,assemble it in masm and load it into the pic16f84a.I am going to use a dip switch for it's input and 1 7-segment … | |
Can u help me on converting ascii to decimal.... I've used the algorithm in the readint procedure but it doesn't work. | |
I am using the book Mastering Turbo Assembler 2nd edition using the tasm 5.0.(o book uses the version 4.0, but with a lot of cost that I got to find it was the version 5.0) the problem is that don't get to carry the programs in I darken him/it way … | |
I have Copied some Forms codeView into a new project and now I try to open a Form with this code but when doing this I will have a message like below. On the left side of the designView, I can see all forms that I have in my project … | |
Here is my question. We declare: var1 db 1 and consider that in memory var1 will be placed at address 0100h Now,when we move var1(byte long) in AX (which is 16 bits long) AX will be filled with value at memory location 0100h + value at 0101h, because AX must … | |
DOSSEG .MODEL SMALL .STACK 100h .DATA .CODE start: MOV AX,01h MOV DX,0Fh XCHG AX,DX PUSHF POP AX INC AX DEC AX PUSH AX POP DX ADD AX,0Ah MOV DX,02h SUB AX,DX DIV AX INT 20 END start I was hoping that after I compiled that I would be able to … | |
I have source code written in assembly for a radio tag and we need a quick way to change the id number each time it is programmed. My background is in C and I want to know if there is an equivalent to C's #define statement in assembly. The #define … | |
The following pertains to a Windows XP Embedded system running a single C++ application with administrator privileges. I need the application to read several bytes of data from the BIOS ROM. The data to be read will have been previously stored in the BIOS ROM at a known address when … | |
i am a beginner of assembly language programming particularly on that with TASM.. We are asked to code a program wherein the user will asked to input a character or a word and then it will print the number of characters inputted by the user.. counting number of characters includes … | |
Hi guys! I'm trying to code in NASM, Real-Mode a simple keylogger which saves keystrokes in a text file(log.txt). I only want it to work in the dos prompt, not the dangerous keylogger type. Only te simple one. Help please? Thanks! | |
Hi, I currently have an task to complete on Assembly. I have been supplid the following code [code]#include <iostream> //for cin >> and cout << #include <conio.h> //for _kbhit using namespace std; #define dollarchar '$' const int maxchars = 5; // you may alter this but it should be at … | |
This is a very quick and easy question: How do I move a literal value into a register? I need to move the value 2 into a register with address 0x0800 of a dsPIC30F6014A. I have tried the following: [CODE]MOV #0x0002, [0x0802];[/CODE] but I get an error message stating "Invalid … | |
I'm trying to create a program where the user enters a digit(more than one digit) and am planning to print the ascii version afterwards. Here's my source code with comments on the INPUT area. The input is a LOOP where it keeps asking the user to enter a number until … | |
I tried creating a program that computes for a factorial of a number. So assuming that the user has entered a SINGLE digit number like '5' the output would be '120'. Every input is a hexadecimal so I converted the input '5' hexadecimal into it's decimal version and there were … | |
How to make frequency counter programming use AT8953 | |
Hi I need to do a correlation of 40 samples using a dsPIC30F6014A (@80Mhz) in less than 15us, but found that when I write the correlation in C, it takes way too long (about 40us). I came accross the MAC function in assembly, which (if I can get it going) … |
The End.