2,878 Topics

Member Avatar for
Member Avatar for Violet_82

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 …

Member Avatar for Violet_82
0
326
Member Avatar for BustACode

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 …

Member Avatar for Mark_37
0
579
Member Avatar for hefaz
Member Avatar for mnkyskilz

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 …

0
100
Member Avatar for Schol-R-LEA

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 …

1
180
Member Avatar for ngodzahbee.seremwe

i am new to assembly language programming so i want to write a simple program that sorts the words in memory locationsin ascending order

Member Avatar for rubberman
0
47
Member Avatar for sarahmalkawi

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 ??

0
80
Member Avatar for ShiftLeft

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 …

0
401
Member Avatar for Chirayu_1

how to create logic operation like and, or, xor on two numbers in to pep8 assembly language?

0
80
Member Avatar for Sara_10

Hi I want Example for code in assembly language to develop alarm clock using **8085 microprocessor** As soon as you can Thanks

Member Avatar for Sara_10
0
874
Member Avatar for ShiftLeft

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 …

0
318
Member Avatar for HōñËy

I need to know how to install MASM on my laptop? anyone please ,if there is online site to download it ..tell me.

Member Avatar for HōñËy
0
133
Member Avatar for Podmar

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 …

-1
101
Member Avatar for fizzah  zahid
Member Avatar for DXNNX

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 …

0
119
Member Avatar for nihade

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 …

Member Avatar for Schol-R-LEA
0
344
Member Avatar for Jaken_1

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 …

0
104
Member Avatar for whatthebobo

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 …

Member Avatar for whatthebobo
0
825
Member Avatar for Đăng

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 …

Member Avatar for Schol-R-LEA
0
143
Member Avatar for Nazariy

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 …

Member Avatar for Schol-R-LEA
0
225
Member Avatar for Mandy_Monyita
Member Avatar for lexd

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 …

Member Avatar for Schol-R-LEA
0
200
Member Avatar for asic_designer

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 …

Member Avatar for asic_designer
0
388
Member Avatar for bd338

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 :).

Member Avatar for Drew_1
0
182
Member Avatar for Tcll

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 …

Member Avatar for Tcll
0
401
Member Avatar for theBigB

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 …

Member Avatar for theBigB
0
539
Member Avatar for roud13

Hello, I'm writing a little program and I have a problem : Using the CHARI instruction , I 'm supposed to get 4 digits representing a year ( I can not use DECI ) . I am able to read characters one by one and convert them to decimal , …

0
101
Member Avatar for krieg

Okay. So I have this code in intel syntax. BITS 64 section .text global asm_proc asm_proc: jmp program section .data ; b8 - mov rax, <32bit immediate> ; 64 00 00 00 - The number 100 decimal ; C3 - ret program db 0b8h, 064h, 000h, 000h, 000h, 0c3h I …

Member Avatar for krieg
0
168
Member Avatar for RikTelner

If I have ready assembler code. How do I make it into runable code, I want to mess around with it and test it in VMPlayer. As far as I know, I could use NASM, and all "NASM's" can be downloaded from: http://www.nasm.us/pub/nasm/releasebuilds/2.11.06/ so, I've managed to find the right …

Member Avatar for RikTelner
0
358
Member Avatar for krieg

Okay, so I am learning Assembly and I started with 32bit and `bswap` seemed to work fine. Now I have this code main.c #include <stdio.h> #include <stdlib.h> extern int asm_proc(void); void print_bits(unsigned long long bits) { for (int i = 0; i < sizeof(unsigned long long) * 8; i += …

Member Avatar for krieg
0
816

The End.