3,896 Topics
![]() | |
Hello , im a very new to programming and i have a Question please. i must write a program in Assembly the Question is : "after giving a maximum of 30 positive numbers the program must output if the given number (Sequence) is a palindrome or not.( intering "0" or … | |
Does anyone know any good books for introduction to assembly? I have a class with it next semester and would like to get a head start. | |
I am taking a class in Assembly this semester and am currently at a loss. The first two projects I found easy enough but now we are working with strings. I have a basic skeleton for the program that gets input. [CODE] .data strbuf: .space 80 # Buffer for string … | |
I am taking a course in assembly language programming this semester. I am linux based. Please assist me in where to start. Thanks rony | |
In the beginning of the book "Structured Computer Organization", Tanenbaum says that a typical computer have 6 architecture levels: Digital, Microarchitecture, Instruction Set, Operating System, Assembly and the Top level (not sure if this is named correctly). Each level is suppose to add a new layer of abstraction, basically to … | |
Sorry for my English firstly! I have the below project to do in assembly language!I don't know Assembly and i would like if anyone has the time to help me! It's a project from my school and it must be done! I would appreciate any helpful information! I look forward … | |
Hi I want to know how we can measure C execution time by seeing the clock cycles generated from the assembly code. Thanks... | |
hello everyone.. im new to this forum.. hey guys..can anyone tell me where do i get good tutorials for IA64 assembly.. thanku | |
Hello can anyone tell me how can i make a hexadecimal calculator that receive from 1 to 8 double words, then enter the first operand, then the second operand, then choose the operator and then give me the result. example: enter from 1 to 8 double words to execute (example … | |
I don't know if this is the right place to post this but here goes nothing. I know this is such a cliche from us C++ coders, but I wanna make my own open source OS. I would use something like BSD or Linux, but I really wanna use C++ … | |
i am trying to learn assembly using TASM . How do i make the below program terminate . i.e jump to final: after entering wrong key say 3 times ?? [CODE].model small .data msg1 db "- - - Enter y - - -",0dh,0ah,'$' msg2 db 0dh,0ah, "..Correct...Good luck ..",0dh,0ah,'$' msg3 … | |
Hi everybody! This is my code . I don't know what's wrong . The output should be 4CA9 . [code] .MODEL SMALL .STACK 100H .DATA .CODE MAIN PROC ;initialize DS MOV AX,@DATA MOV DS,AX MOV CL,4 MOV BX,4CA9H MOV CX,4 TOP: MOV DL,BH SHR DL,CL CMP DL,10 JGE ELSE_ OR … | |
Hi all, Well, I dont know if it is the best place to talk about this... but... I am developing one program that process texts, with a plugin system, and I need to make some type of anti-crash system in the plugin system... Well, this anti-crash system for what I … | |
im just trying out to program a pda application [CODE]Public Class Form1 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load MsgBox("it works") End Sub End Class[/CODE] however i keep getting the following error: The version of the assembly System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089 cannot be loaded by … | |
Hello guys... First of all I don't know if I starting this thread in a correct Section..If I`m wrong then sorry mods... Well I`m developing something from which you`ll be able to control any electrical item(Make it ON/OFF) from anywhere. I just wanted to know who will any company benefit … | |
Hi everbody especially people related to assembly language. I have keen interest towards learning assembly language and would like to do so with expert guidance from experienced people. I am from India | |
can anyone tell me how to create a assembly ..and how do use it in our application..i am new for .net so only ...how do find out the error in dll? | |
So assembly language interrupts are signals to the OS asking it to perform an action based on what is in the register. I was thinking, what would happen if there is no OS on the device you are programming. If you can't use interrupts from the OS would you have … | |
right I'm trying to clear some things from this example code: [QUOTE] DOSSEG .MODEL SMALL .STACK 200h .DATA OurString DB "This is a string of characters. " DB "Do you lack imagination? Put something interesting here!$" .CODE START: MOV AX, SEG OurString ; Move the segment where OurString is located … | |
Hi all, I would liek to know if its possible to read a text file in assembly I am currently using 8051 microcontroller and sending the text file from the PC to the microcontroller via the USB. Is there any way to read the content of the text file or … | |
I want get 2 variable for string 500 ( 250 for a varible and 250 for other variable) [code].model small .data maxlen db 255 actlen db ? str1 db 255 dup(?) str2 db 255 dup(?) msg1 db "Enter String 0 to 255$" msg2 db "Enter String 255 to 500$" .code … | |
Hi I am new in assembley and I need a sample source or a tutorial about mul of big numbers for example 10 disigts * 10 digits. | |
I am new to assembly. I have writtem a program for my Z80. I have successfully assembled it. How do I make it to an EXE file? | |
Just wondering, since assembly code is more or less what every other language is compiled into, would it be useful to learn how to do things in assembly before learning say, C or C++, pascal, python, etc? I am already fluent in Visual Basic but I want to get to … | |
Hi there. Nice forum you got here. I am coding strictly as a hobist since 1988. But I more keen on studying computer languages. I have studied, GWBASIC, DBASE, CLIPPER,C,C++,ASSEMBLY,DELPHI,C#,JAVA. Imade some decent programs with C++ and Delphi. Now I am more interested in making programms . 3d graphics and … | |
I'm looking into learning some more languages and some better code writing techniques, but I am not sure of the languages that I should delve into. So far I know VB really well and I started learning assembly, but I don't know that past some, I guess, medium difficulty, 16 … | |
I am reading two e-books on assembly at the moment and have found a strange way of writing out the code and I had wondered if it was native to a certain assembler? I am used to code in the syntax of [QUOTE]mov eax, [input1] add eax, [input2] mov ebx, … | |
hi Just a few days ago I've started learning C#. BTW - I hope I'm not breaking any forum rules by putting three questions inside a single thread, but I don't want to "spam" this forum by making too many threads. 1) From the book: [quote] A field initializer is … | |
Hi to all, I wrote a code, and it gives me divide overflow, but the issue here is that when I run the program trough the debugger it works fine, but when I run the program in the dos mode it gives me Divide overflow error. here the code: [code=assembly] … | |
Hi All, We have a requirement to write a custom FxCop rule to generate a warning message when a SQL Query is encountered in the program and suggest to use a Stored Procedure instead. I have written the following code which is generating a warning when an SQL object is … | |
Hi all, I am trying to create Web Controls and i am getting this error: Could not load file or assembly 'Microsoft.Web.UI.WebControls' or one of its dependencies. The system cannot find the file specified. i inserted all respective directives and namespaces at the begining of the page and also in … | |
Hi all, I am trying to create Web Controls and i am getting this error: [COLOR="red"]Could not load file or assembly 'Microsoft.Web.UI.WebControls' or one of its dependencies. The system cannot find the file specified. [/COLOR] i inserted all respective directives and namespaces at the begining of the page and also … | |
I'm trying to take a string of numbers and convert it to an actual number. I can successfully convert it if it's just one digit, but I'm unsure how to convert a number with two or more digits. [CODE=nasm] section .data str: db '3' ;string to be converted section .text … | |
Hi, I am learning ASM and have encountered a problem. I have the following statements. When debugging I am seeing that the value in AL is not being inserted as 02h. On the other hand if I change "mov al, [myNumber]" to "mov al, 02h", I get the desired value. … | |
hi,iwant ot read first 512 byte from my hard disk partitions i have to use ax=7305,cx=0ffffh,int 21h AX = 7305h CX = FFFFh DL = drive number (00h=default, 01h=A:, etc.) SI = read/write mode flags DS:BX -> disk I/O packet how can i determine sector and track like this : … | |
I am attempting to write assembly code for linux using nasm. I have an include file containing io functions that was originally written for windows using masm and I am trying to convert it. I have on procedure that I am having problems with. The procedure is supposed to recieve … | |
I've been looking for tutorials on x86 assembly language, and most that I've found have been dated. One actually says that the Pentium IV is the newest Intel processor...Anyway, the things I'm wondering are: 1. Has x86 assembly changed much in 10 years due to the huge advances made in … | |
Hi, Before migration: Existing application (running on .Net 1.1) is using custom control developed by inheriting TreeView control of Microsoft.Web.UI.WebControls and displays data (country & its city’s) in heirarchical format. After migrating existing application: the same custom control is not displaying data in hierarchical format, only country node is being … | |
we are developing a web site which must support multi languages. so we use .resx files. the user must be able to edit the content of the resource file after the deployment. we could not be able to put .resx files in to App_GlobalResources, the .resx files are compiled to … | |
so I have this working procedure that is basically like func. 09h of int 21h except it terminates at 00h, and it uses 01h-04h as control characters that determine the style of the text. I wrote it in the main procedure of a test program to get it working, and … | |
We have developed asp.net project in VS2005, framework 2.0.50727 using C#, in that we are using a third party library(Map Quest) to display the Map. When we are calling a function from dll, we are getting the following error (configuration error) . Message: That assembly does not allow partially trusted … | |
Sooooo I'm writing a program that involves a lot of writing to the screen and I want to do it at bios level. Mostly because the DOS calls can't do what I want to do, and also because I'm afraid to go all out and write directly to the vram. … | |
so, I want to avoid using int 21h and start working with BIOS level code. I'm trying to write something equivalent to int 21h, function 09h, using int 10h functions 09h, 03h, and 02h, except I want the reading to terminate when it reaches a 00h character, switch to green … | |
Hi .... :) I'm creating a windows application on Hotel Management using c# 2008 ... The only problem i have is regarding the use of DirectSkin in c# .. Earlier, i used to design using vb6 ... the procedure fairly simple ... we just had to add a reference and … | |
I'm very new to pic programming. I have a program which uses assembly language on a PIC16F84A microcontroller. This program does a simple approximation ADC. I know what it should do as a program but assembly is a new language for me!!!! Are there VERY GOOD tutorials and manuals on … | |
How can I create a multi language, single-file assembly in C#.Net ? | |
Hello, I need help with a puzzle I am trying to make in assembly. the description is down below There is a famous puzzle invented in the 19th century which you may have seen, or indeed tried to solve. Imagine a tray consisting of 16 spaces arranged in four rows. … | |
hI, I need help on how to converting uppercase to lower case in assembly language 68k. | |
Hello, I'm new to the forum. I studied x86 assembly about 25 years ago. I think we used a 8080 or 8086. It was all Dos back then, no Windows. Anyway, my career took me down another path and I would like to learn assembly again. My laptop and desktop … |
The End.