2,889 Topics
![]() | |
hi every one!! can anyone send me a sample program that creates a different beep sounds.. meaning by pressing diffrent letter, a diffrent tone sounds.. beep of diffrent frequency... | |
Hi, I am a newbie in this wonderful world of PIC programming and having some problems, so I'm hopeing some one out there can help me out. I have written a program for the pic 16f876a microcontroller, this uses RA0 as an analogue input. I have tested it with MPLAB … | |
where can i learn about assembly language, i want complete tutorials online | |
im coding in 8086 assembly. i want to separate a string. For example: Str DB '24+67' i want to separate the '24', the '+' and the '67' and place them in the variable num1, operator, num2 respectively. can anyone help me with a piece of code please. thanks | |
The knapsack problem I try to write about this problem but i can't ... This is a problem thai i have .. Suppose you want your knapsack to weigh exactly 20 pounds, and you have only five item, with weight 11,8,7,6,5 pounds. For small number of items, humans are preety … | |
I would like to write a loop that will add all the elements of an array together but have absolutely no idea how to access the elements of the array in a loop i.e. in java where you can just use a[i]. Can anyone help me out?(I'm using MIPS) Thanks … | |
Hello, I am a newbie to assembly. I am working with a custom Bios that does not boot the mbr of the first drive but a custom binary file on the first partition of the first drive. It is written in 32bit nasm and loads a [URL="http://www.tek-tips.com/viewthread.cfm?qid=1279995&page=1#"]linux kernel[/URL] directly. What … | |
Any known tools available to decompile a XCOFF object or executables? | |
Hi every one.. Please.. I need a program to calculate X power Y by assembely language.. Please friends help me . :-| | |
Hi, I'm having problems with my code. What I"m trying to do is print out a message to the screen asking for input and then take the input from the user. The problem I'm having is the menu appears AFTER the user types in a string. For instance, when I … | |
hello... what this suppose to mean? "With a single bit, you can represent any two distinct items" (ArtOfAssembly) somehow, you can store in that bit, the value "hello there!" ? :rolleyes: sorry for this stupid question :rolleyes: | |
I noticed that there are no tutorials for asembler in the forum like for example in c/c++ forum just code snippets. Or maybe there are? If someone know their existances please notify me. | |
i want to find a string in C:\text.txt. if i find it , i can modify it. please help me~ data segment tip db 'This program will search a string in C:\text.txt.If it exists,you can insert a new word in that position.$' mes1 db 'please enter your string:$' mes2 db … | |
greetings i'm not too sure if this is the correct place to ask for this in this particular forum i'm working on to make a USB PIC programmer. is it possible to modify the firmware for 16F628 used in Wisp628 board, so that it can be burnt into an 18F4550 … | |
hello there! lately i started learning assembly from a book that first gets you through many things about processors, memory, logical&physical addresses and many others... now, what i dont understand is: any element from a segment is available through an logical address that has two elements: a selector and an … | |
:eek: I am a newbie, while my teacher give me a big problem~ Find a string which is specified in a file. If it exists, print the first place where the string is in, or print there is no such a string. For example: Find c;\1.txt MyGod! It will find … | |
example , I put in the number [B]1.52[/B] then, in the dump, it looks like [B]31 2E 35 32[/B] (the ascii equivalent of '1','.''5',and '2') but I want it to be [B]3F C2 8F 5C [/B] so that I can start my calculator Thanks! | |
lately i downloaded nasm for compiling .asm files but when im trying to compile something(by using in cmd "d:\nasm\nasm.exe -f bin d:\nasm\myfile.asm -o d:\nasm\myfile.com") i get the following error: "d:\nasm\hw.asm:4: error: parser: instruction expected"... does anyone know why and wanna help me? thanx in advance | |
i am trying to Calculate the physical memory address generated by the following segment offset pairs. please you check my solution. thanks Answer: a. 1DDDh:0436h [COLOR="Blue"] [B] 1E206 [/B][/COLOR] b. 1234h:7920h [COLOR="blue"][B]19C60[/B][/COLOR] c. 74F0h:2123h [COLOR="blue"][B]77023[/B][/COLOR] d. 0000h:6727h [COLOR="blue"][B]06727[/B][/COLOR] e. FFFFh:4336h [COLOR="blue"][B]104326=04326[/B][/COLOR] f. 1080h:0100h [COLOR="blue"][B]10900[/B][/COLOR] g. AB01h:FFFFh [COLOR="blue"][B]1AB00[/B][/COLOR] | |
elo everyone ;) I wanna learn assembler and I can't find any good sites... what ones would u recommend? Thanks in advance | |
Now, thing works, should i trash motherboard are can this be salvaged. The computer want even boot up. nothing goes to the monitor "no signal" I put a pentitum 4 processor on a 478 motherboard with max FSB of 533, the processor is 800 FSB. I can't get it to … | |
I just picked up the textbook for my ASM class and was suprised to see that it's for the 8085 processor. I know it's good to start simple so I don't think it's necessarily a bad thing as long as the basic principles apply to chips that aren't 30 years … | |
Hi When i assemble follow code [code] ;--------------------------------------------------------------- ; EAT.ASM ; Backhanded advertising program ; ; by Jeff Duntemann ; MASM/TASM ; Last update 3/5/89 ;--------------------------------------------------------------- ;----------------------------| ; BEGIN STACK SEGMENT | ;----------------------------| MyStack SEGMENT STACK ; STACK word ensures loading of SS by DOS DB 64 DUP ('STACK!!!') ; … | |
Which software should i use to exactly create a complete operating system:?: . I need an application which uses machine codes(like emu8086) and can manage all the RAM and all hardware interupts. Please someone help | |
Jeff added some coding puzzlers to his AsmIDE site: [URL="http://members.save-net.com/jko%40save-net.com/asm/puzzles.htm"]http://members.save-net.com/jko%40save-net.com/asm/puzzles.htm[/URL] Anyone got any solutions, more puzzles, etc.? Nathan. | |
How can i make my operating sys have more pixels like windows. | |
Good Morning All, I am planning on undertaking a project for school and was wondering if anyone could tell me if I am better off using Assembly Language, Java, Basic or C to program my OOpic Microcontroller? Thanks. Ini | |
Hey, I am willing to use the following code in one phase of my project. The problem is that i dont understand this assembly language, In school I took it in different form... Mov ax, bx out 11, AL bla bla... here the registers is different and everything is different.... … | |
Hi all.. [code] mov al, 0xB6 out 0x43, al [/code] Why the istruction out give me a segmentation fault ?? :rolleyes: This is the enteire code [code] section .data hello: db 'Hello world!',10 ; 'Hello world!' plus a linefeed character helloLen: equ $-hello ; Length of the 'Hello world!' string … | |
| |
[COLOR="DarkRed"]Hi 2 all, How can i differentiate between between an opcode & label in 8051 instructions ... for example following are 2 instructions - mov ax , 10 - name db "Saman$" how can i know that name is a label and mov is an opcode??? thx .. do reply … | |
write a MIPS program that calculates d=a*b-a*c without using mult instruction --- just for practicing your MIPS assembly. [LIST=1] [*]• Hint: use loop of additions to replace mult. [LEFT][/LEFT] [*]• Practice SPIM system calls to input values for a, b and c, as well as printout the value of d. … | |
Where can i find an application for coding an assembly program:!: | |
can any one give me the name of the books for Borland Turbo Assembler ?????????????????????????????????????????? Or any link for book or online tutorial............ :-| :-| :-| plz plz | |
I'm having trouble getting this source code to compile. Could you guys please tell me where I'm going wrong? The source code is compiled in LC3EDIT and then ran in LC3simulator. Here is the source code and routines. I've changed everything that's suppose to be changed and the labels, etc. … | |
Hi, I'm new to 80x86 Assembler... My question is very simple one: how should i print number on screen? I used the following code to print ascii data: [code] mov ah,09h ;load code of print function lea dx, Var ;load address of variable to be printed int 21h ;DOS call … | |
Hi, everyone! I am trying to program (in assembler) a hardware interrupt at vector 72h, to beep twice. The program seems to be running, and it looks like it is returning control to DOS. I can run it as many times as I want, the only problem is when I … | |
Ok, I've been trying different tutorials/methods of learning asm and right now I'm reading Dr. Paul Carters tutorial and using NASM and DJGPP to compile. I just got into the conditional/jump section and I wanted to test how the jumps work and ran into a problem. The read_char macro seems … | |
What is the best way to create/call procedures? Which argument-passing-styles are available? Thanks in advance, Jules | |
Hi, I'm trying to construct a compiler for a really simple stack based language to learn how my computer really works, and to learn how to create a compiler. So far, I have never done anything in assembly (only higher level languages). Could you give me advice about the following … | |
hi i have a problem but i'm not sure if this post goes here or not. anyway here goes. i just started a course in chinese and the name is"huibian yuyan sheji" (for those that understand chinese) which translates to "compilation language and design". now i have typed the english … | |
hi iam using visualstudio.net 2005 can anyone help me . if we complile and execute an asp.net application.where r the global.aspx and assemblyinfo files are stored.please help me regarding this topic | |
HI! can you guide me about writting viruses in assmbly? tnx. | |
I used to program in 68x assembly many years ago, I would like to learn x86 64bit assembly, any suggestions on a good book to purchase? :mrgreen: | |
Hi, Just looking for a bit of help with MIPS. I've written the following program but can't get it to run on PCSpim. Think I've done something wrong with the nextCh command as it keeps iterating again & again but can't figure it out. It's to convert uppercase to lowercase … | |
I am new to Microprocessor 8086. i should submit this assignment by today evening. I want to know how to write a C program that calls an 8086 assembly subroutine that divides a unsigned 2 byte number by an unsigned single byte provided the single byte number is NOT zero. … | |
hi all ,... iam making a simple disk editor , and i need a methode that convert from ascii to Hex representation thank u all | |
dear friend, i am just start assembly i am not known about assembly. please some one check my question and complete this. thanks Calculate the physical memory address generated by the following segment offset pairs. a. 1DDDh:0436h b. 1234h:7920h c. 74F0h:2123h d. 0000h:6727h e. FFFFh:4336h f. 1080h:0100h g. AB01h:FFFFh [B]anwer[/B] … | |
dear friend, i am just start assembly i am not known about assembly. please some one check my question and complete this. thanks Calculate the physical memory address generated by the following segment offset pairs. Answer: [B]anwer[/B] a. 1DDDh:0436h 1E206 b. 1234h:7920h 19C60 c. 74F0h:2123h d. 0000h:6727h 06727 e. FFFFh:4336h … |
The End.