2,888 Topics
| |
Hi, I need help in using assembly language to program PIC16f84a for a traffic light. Please, I would appreciate any help. | |
Mention the DOS interrupt that is used by the printer to send acknowledgment of its output. Also provide the corresponding service number and registers to be used | |
How do you boot into a primary parition or the FAT file-system in the first sector of the MBR? That's the error on the USB stick and the error say's that it can't mount the file on linux mint. The specific verion of FAT is either FAT 32 or FAT … | |
Error 4 'ASP.ajax_aspx' does not contain a definition for 'TextBox8_TextChanged' and no extension method 'TextBox8_TextChanged' accepting a first argument of type 'ASP.ajax_aspx' could be found (are you missing a using directive or an assembly reference?) C:\Users\Hp\Documents\Visual Studio 2010\WebSites\WebSite4\ajax.aspx 508 | |
Hi, since I've spectacularly failed to build a simple MVC application (for now at least ) https://www.daniweb.com/web-development/aspnet/threads/496278/building-first-mvc-application, I've decided to do even a simpler one, modelled on this one http://www.codeproject.com/Articles/683942/An-Absolute-Beginners-Tutorial-for-understanding-E , which is supposed to create a few books and their associated reviews I don't think it gets simpler than … | |
I, and many others, desired a "switch" keyword in Python. For me it was to a desire to make some of my code more compact and readable, as I often have many user selected options for the code to weed through. So I set off on a journey to figure … | |
| |
hello, i am writing a mips assembly program where i must multiply two 64 bit unsigned integers. I understand that i must first take one integer divide it into hi lo and do the same with the second and multiply these four parts. My question is when i read an … | |
When posting any request for help with an assembly language problem, we ask that you provide some crucial information: * The operating system (Windows, Linux, MacOS, etc.) the program will be running under, including the version, * The assembler you are using, including the version, * the bit width being … | |
i am new to assembly language programming so i want to write a simple program that sorts the words in memory locationsin ascending order | |
i want to write easy68k Assembly program to read two numbers each number have 20 digit , then multiply them together and finally print out the result ?? | |
This will take a value in EAX or AX, convert to ASCII hex with optional padding and upper or lower case This example would yield "---fc103a" push word 0x222d ; 32 bit conversion, padd output with '-' push word ASCPntr ; Pointer to end of conversion buffer push 0xfc103a call … | |
how to create logic operation like and, or, xor on two numbers in to pep8 assembly language? | |
Hi I want Example for code in assembly language to develop alarm clock using **8085 microprocessor** As soon as you can Thanks | |
This is a special purpose boot loader for a system I've called Proto-Sys. Eventually it is going to become a 64 bit application that will encompass all the resources to hook into drivers, benchmark code and optomize algorithms. Synopsis: * Preserve registers as they were passed by BIOS * Create … | |
I need to know how to install MASM on my laptop? anyone please ,if there is online site to download it ..tell me. | |
Write a MIPS Assembly program that inputs names and marks for three student assignments and computes the total score for each student and the average class score per assignment. Assume Assignment#1 is scored out of 5; Assignment#2 is scored out of 10; Assignment#3 is scored out of 5; Hence the … | |
if Al < 0 then put ffh in Ah else put 0 in Ah End_iF | |
i need generate a program that say if a word is palindrome or not, but the specification of my word say that the max length of the string is 200, but the getstr of io.mac the max is 81, anyone know a alternative to manage a string of 200 characters … | |
hello Friends,, i need your help please i don't understand where is the problem in my code it blocked in "the print reverse" step help me please !! with a simple explanations because i'm new in this thanks DATA SEGMENT STR1 DB "ENTER YOUR STRING HERE ->$" STR2 DB "YOUR … | |
Like the title says. I have a user-inputted string that I need to do math calculations with, therefore, I need to convert the string to an integer. This is my current code. What can I do to manipulate the number the user inputs? org 0x100 section .data prompt db "Enter … | |
So I recently started taking this class and i never learned assembly language so writing the program was very difficult. I have this project to do and this is part one. The instructions are: Part 1 Implement the following C++ code fragment in assembly language. Use the block-structured .IF and … | |
6 Consider the following set of assembly instructions: addl %ecx, %edx; cmpl %ebx, %edx; jge .L4 where %ecx stores the value C, %ebx the value B and %edx the value D. What C comparison is implemented by this assembly code? Select one: a. if (c + d >= b) then … | |
Hi, I am multiplying two matricies in assembly. It is a 2 x 2, and as you can see they are defined down below in the code. I am also defining storate for 4 words so tht I can save the resulting matrix. 1. I declare offset fo each matrix … | |
I cannot write Assembly code to save myself can someone write this for me please I want to make a fast case statement as a standard case statement is way too slow for my project. my project hangs on this centail peice of code. Hear below I see how to … | |
I have a question about the assembly code generated by this small patch of C code that I wrote. The code patch is shown below, basically what I am doing is reading floating point values in from a hardware updated register and performing the arctan2f function on those values. #include … | |
Hello everyone. I erased A86.exe, because I wanted to learn 32-bit Assembly. Now I want to program a little bit in 16-bit Assembly again. So I downloaded A86.exe, but now when I open my *.ASM files with it, nothing happens. Please help me :). | |
First off, I know this question doesn't exactly belong here... I'm asking here because this is the lowest common ground between binary opcodes and: # python 2.7 class A(object): def __init__(this): print 'I am initialized!' instance = A() my question is, what's the equivelant of that in either PPC or … | |
Hey everyone: i have a project to do in assembly(8086) and i want to do a simple anti-virus. The idea is that you will write the path (url) to a document that you want to scan. The program will scan it and will compare it to a known viruses. can … |
The End.