Search Result
Collapse
6 results in 0.0013 seconds.
Keywords
Members
Tags
-
Moving code from one machine to another
I am moving code from one machine A to another Machine B one project in Machine A has a shared assembly in the GaC of Machine A This project fails to load load on Machine B its actually grayed out in solution Explorer with a message "Project_XX X (Unavailable)" and "This project Cannot be loaded" what is the correct process to ensure that this project loads do I have to copy the assembly for Project_XXX from the GAC of Machine... -
What does a class in C++ look like in assembly?
If I defined a class in C++
class SomeClass
{
...
}
what would that look in assembly. -
How to convert inline assembler to .asm file
Hi all,
I'm having a problem converting an inline assembler function to .asm file. I need seperate inline assembler code because in x64 architecture doesn't have support for inline assembly. Here is the code(and attached as a txt file IsVM.txt at the bottom),
#include <windows.h>
#include <string>
#include <iostream>
#include <tlhelp32.h>
using namespace std;
... -
How do I combine C / C++ with Assembly
Im having trouble when I try to compile the c code and link the c and assembly object files. There is two files driver.c and first.asm I copied the code for both files out of book im reading and im using netwide assembler and borland c compiler.... -
Getting Global Resource of Application
Rather than having to create a new "About" form for every program that I write; I have written a class which will create a new form at runtime with all the objects placed. This has been designed so that the class can be added to any project that I am doing and executed as a new instance - voila, one "About" box.
The problem I am currently having is the ability to display a logo on said form. Normally, images are... -
altaey started a topic Write a program to find and print a Fibonacci sequence of numbers in assemblyin CWrite a program to find and print a Fibonacci sequence of numbers in assembly
Question Details:
Write a program to find and print a Fibonacci sequence of numbers. The Fibonacci sequence is defined as follow:
Fn = Fn-2 + Fn-1, n >= 0
F0 = 0, F1 = 1, F2 = 1
Your program should prompt the user to enter a limit and indicate whether the last number in the sequence printed is either even or odd.
Here is what the user will see when the program is executed:...