Posts
 
Reputation
Joined
Last Seen
Ranked #1K
Strength to Increase Rep
+4
Strength to Decrease Rep
-1
100% Quality Score
Upvotes Received
5
Posts with Upvotes
4
Upvoting Members
5
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
3 Commented Posts
0 Endorsements
~18.4K People Reached
Favorite Forums
Favorite Tags
Member Avatar for ang19

Hi have one querery regarding writing in machine code, address- instruction 00000 001 10000 00001 010 10000 00010 100 10000 00011 110 10001 00100 111 00000 10000 000 00001 10001 000 11111 i dont know how to write a program in machine code, which adds up to the numbers stored …

Member Avatar for David_34
0
1K
Member Avatar for faith07

Hello everyone, Im new in assembly language. I would like to ask your help to teach me how to convert the below C language into tasm language. thank you very much. #include <stdio.h> #include <dos.h> main() { unsigned int year; unsigned char month; unsigned char day; union REGS regin,regout; clrscr(); …

Member Avatar for neha afreen
0
1K
Member Avatar for cjwenigma

8086 Assembler ...I need the code for the following problems to do a few things.....try and include inline comments so i could understand them better... that could help me out.. PLEASE!..Thanks 1. Count the number of bits, in the double word that starts at memory location DS:1234h, that are 1. …

Member Avatar for sohaibkassab
0
223
Member Avatar for 3xy

.model small .stack 64 .data error_alpha db "Invalid input. Expression contains letter/s. ",13,10,"$" error_range db "Invalid input. Operand/s may be out of range. ",13,10,"$" error_overflow db "An overflow has occurred. ",13,10,"$" error_invalidinput db "Invalid Input. ",13,10, "$" redo db "Please enter a valid one.",13,10,"$" newline db 13,10,"$" inputlen dw 2 …

Member Avatar for anomalice
0
237
Member Avatar for aserfiotis

I have a project for which I have to implement parameter passing through stack between different protection levels. The information about the number of variables needed to be passed at the function must be given through DWORD Count of Call gate For this project I have to: A) Create 4 …

Member Avatar for aserfiotis
0
115
Member Avatar for eri_car

Hi, i am trying to write an alternative MIPS program the multiplying two given integers 6 and 8 i have already written # Program to multiply 6 by 8 answer = 48 .text main: addi $t1, $0, 6 # store integer 6 in $t1 addi $t2, $0, 8 # store …

Member Avatar for Purple Avenger
0
77
Member Avatar for viivaakash

Can anybody help me out and tell me that in which microprocessor 8086 or 8088, a far procedure call executes faster and with reasons Plz help me as early as possible

Member Avatar for Purple Avenger
0
654
Member Avatar for in7en7

Hello, I'm having some problems getting int21 function 9 working correctly. I've searched around a little bit, but I seem to be missing something still because no matter what I change it doesn't seem to display what I'd like it to. It seems to me that it should look like: …

Member Avatar for in7en7
0
157
Member Avatar for birdy

Hi guys, im currently programming in 16bit dos for my class.. Is there a better technique (as to saving space/memory) to writing what i have down here, or that is the best it will get? [code] mov dx, ' ' int 21h mov dx, '|' int 21h mov dx, ' …

Member Avatar for Purple Avenger
0
78
Member Avatar for sillyboy

Hi all, I am after a instruction set with limited or no floating-point instructions. Why I want this is to get a compiler of this certain architecture and compile code (one with floating-point and the other without). With the resulting assembly I wanted to compare the two and do some …

Member Avatar for Purple Avenger
0
132
Member Avatar for mattyd

Hello: I am a programmer. I work professionally primarily in C, C++. Most personal programming projects I do is in either C++ or Python. I am studying Java and Ruby currently. My quetion is: How valid do you find Assembly language in a modern sense, professionally or otherwise? I ask …

Member Avatar for bootstrap
1
239
Member Avatar for jash00

hi my friends. I need your help, I have to solve these three problems ASAP. Please help me with this: [U][B]1)###########################################[/B][/U] [COLOR=#000000]For a set of numbers read into an integer array (arr1) populate another array (arr2) with A*x2 + B*x + c, where A, B, and C are integer constants …

Member Avatar for Ancient Dragon
0
125
Member Avatar for KimJack

Hi all, I am hoping that you could help me with this. I am working with assembly language 8086. I am trying to put integers into an array one at a time after a prompt. Something like this: Please input an integer: 6 Please input an integer: 1 Please input …

Member Avatar for KimJack
0
935
Member Avatar for brian.p

[code] ; Description: Program to input a character and then output it to the screen ; Registers used: ax, dx .model small .stack 100h .data .code mov ah, 02h ; DOS function call 2, character output mov dl, 41h ; the character 041h (i.e.'A') mov cx, 26 ; start the …

Member Avatar for Purple Avenger
0
9K
Member Avatar for SamY

I need help as to how 2 change machine codes 2 binaries or hex like mov to mayb 101011111, yeah, u know like own compiler

Member Avatar for SamY
0
150
Member Avatar for Metsfan147

Hi, I'm just starting to learn about x86 assembly and was surprised at the seemingly small amount of registers. The 8 general purpose registers you always read about /use eac, ebx etc. . are they the only GP registers on a processor or are there others that depend on the …

Member Avatar for mathematician
0
218
Member Avatar for raj140916

Dear friends i am in need of assembly code for interfacing RTC with 8051 microcontroller. plz help me as soon as possible:-|

Member Avatar for Purple Avenger
-1
116
Member Avatar for simona66

Hello I want to drag & drop an object like rectangle , would you please give me the code and intterupt of it? thank you in advance

Member Avatar for mathematician
0
91
Member Avatar for KalebG

I've been searching around the site, looking at the different types of coding, and come accross Assembly. This is one of the most complicating code ive seen yet and was just wondering what is it's most common use?

Member Avatar for Purple Avenger
0
510
Member Avatar for dalvandi

hi. i really need 8-queens problem assembly source as soon as that you think! any body can help me?:?:

Member Avatar for simona66
0
120
Member Avatar for shiman999

hi everbody.. its really a challenge to write a virus program but eventually we should not harm anty bodys computer.. we should learn virus programming becoz we can write an anti virus for it. if we know how the virus programs are written and defnitly we can built an anti …

Member Avatar for Ancient Dragon
0
78
Member Avatar for amrac

I have a work to do in Assembly. With the value of a radius given by the user, It only calculates the [B]area of a circle[/B]. It has to work in 8086 and not in 80386. I think that the problem is that the value is loaded to the FPU …

Member Avatar for amrac
0
211
Member Avatar for csckw

hello every one i had some erros in my code can you plz fix it to me coz i didnt know how to fix it this is my code : DOSSEG .model small .stack 100h .data redbox db 10, 30, 13, 40 lbox db 10, 30, 13, 40 db 10, …

Member Avatar for Purple Avenger
0
145
Member Avatar for Mushy-pea

Hello everyone. I read a couple of tutorials on x86 assembly a while ago. It was made clear in these that certain instructions need to be included at the end of a program to make it close properly. However, there was some inconsistency about how a program should be terminated. …

Member Avatar for Purple Avenger
0
110
Member Avatar for only_asm

Hi guys! I need the code for 32 bit division in assembly (8086 architecture) ASAP! Kindly reply to this post! Thanx!!

Member Avatar for Ryu
0
1K
Member Avatar for mattyd

I have just begun reading a PDF on Assembly language. One of the terms it mentioned and encouraged the reader to research further is "pipelining". I looked this up and read a brief description on WikiPedia; a section of the article stated: "In [URL="http://en.wikipedia.org/wiki/Computing"][COLOR=#0000ff]computing[/COLOR][/URL], a [B]pipeline[/B] is a set of …

Member Avatar for Infarction
0
124
Member Avatar for Day Brown

Or is there some other way to break out of the 640x400 or 480 limit, and have 8x16 characters on a 1024x768 screen?

Member Avatar for Day Brown
0
157
Member Avatar for abdullateef
Member Avatar for Purple Avenger
0
281
Member Avatar for kiks

Does anyone knows how can I count how many digits are there in a binary number? Any ideas???

Member Avatar for Purple Avenger
0
482