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"...
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...
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...
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...
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 ...
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...
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...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.