Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: redwing26
  • Content: Threads
  • Order by date
  1. redwing26

    how do I span an asm array over multiple lines to make it neat?

    I really read heaps on the web but the examples only covered putting 2 or 3 string values in an array .......I want it to span multiple lines for readability e.g scodes db "q", "w", "e", "r", "t", "y", "u", "i", "7", "8", "9", "0", "-", "=", 0 , 0 , "q", "w", "e", "r", "t", "y"...
  2. redwing26

    extremely infuriating piece of code

    Hi I am using asm and I was able to get stuff of my stack a very round about way by first putting the value of the stack into a register e.g cx then doing mov al,cl then calling int 10 to display the hex value ascii code letter. Anyway I wanted to make it so I did mov al,[bp+4] int 10h but it...
  3. redwing26

    how do I get text at the top left of a cleared screen with asm?

    I scroll up the screen in nasm using into 10,6 to clear it I then want to print ZeonOS ReadyFI ^^at the top left of the cleared section of the screen, what happens in reality is the screen clears but the text appears half way down the cleared section of the screen e.g --------cleared area...
  4. redwing26

    how do I write a text input driver on my x86 console OS

    Hi I have been reading assembly books like nothing else, I have a reasnable experience with c. At present I have made a bootsector on a floppy disk, this reads a file loader.bin (assembled via nasmw). Loader.bin is whats going to be the console os , I have followed a guide at the following page...
  5. redwing26

    seperator error in windows .mak file

    Hi I am reading a book called windows assembly language and systems programming (a very good book at that), the thing is im trying to learn how to do windows make files and the example is like so: [file skeleton.mak] fn = skeleton all:$(fn) .exe $(fn).obj : $(fn).asm masm $(fn); $(fn).res ...
  6. redwing26

    need help with segment addressing

    Hi I have quite a good book called: windows assembly language and systems programming, anyway Im at the stage where they explain how segments started, they say that each memmory address is 8bit and that the 20 bit starting adress of the code segment(cs) is CSx16. It then goes on to high memmory...
  7. redwing26

    have worrys about compilers

    Hi , I have been slowly learning assembly for a while now, I went away for it for a while to get a better understanding of c, anyway now Im back on the assembly, I have the following compilers tasm and masm. Now eventually I want to learn to use assembly to crack my own programs to better...
  8. redwing26

    any good ides,assembly editors(as) for linux (must do indenting & good

    Does anyone know here I can get any good ides,assembly editors(as) for linux (must do indenting & good colour coding.....e.g keyword colour coding NOT black). I no I can colour code myself through some of the apps but I would rather just get a good ide, or good thorough editor with a pre made...
  9. redwing26

    need help to get output from my program after its done the calculation

    Hi I typed a program in from a newbie assembly language tutorial ........i saved the file as pwrbookex.s then did the following as pwrbookex.s -o pwrbookex.o ld pwrbookex.o -o pwrbookex ./pwrbookex argent777@localhost ~/assembly $ <-------nothing echo $? displays 0...

Part and Inventory Search

Back
Top