Assembly
An assembly language is a low-level language for programming computers.
Application
Any
Platform
Linux
Remove
License
Any
And while we're on the subject. Is there any decent tutorials, books, source code etc. for learning NASM in DOS 16 bit mode. I've found some pretty neat stuff for NASM under linux and Win-32/64 bit,...
: : I must know because I want to design a n OS of my own used for
: : Mainly Gaming.
: : I want it to play MAC, Windows, and Linux Games.
: :
: : What Programming language would I use to go...
: I must know because I want to design a n OS of my own used for
: Mainly Gaming.
: I want it to play MAC, Windows, and Linux Games.
:
: What Programming language would I use to go about this?...
I am trying to learn how to write shellcode for my proof of concepts for exploits I find but I am not very good at assembly.
This is the code I was working on and for some reason it assembles fine...
I do not understand this question. What is "input ah is 1 for char"? To put the value into a register simply use MOV instruction:
MOV AH, 40h
Please rephrase the question. Explain what program...
Hi every professional ,
I am newbie in the assembly language and until now I do not know how to input the number data type in the pure assembly langauge . I do not embedded it in C++ . In Dos...
http://sourceforge.net/project/showfiles.php?group_id=165727
Version 2.3 of the StdLib is now on SourceForge.
- Improvements: Linux support is now more complete.
- Includes: Automated Test...
Just wondering if anyone has played around with these libraries from ASM code?
http://packages.debian.org/testing/libdevel/libsensors-dev
http://www.lm-sensors.org/
Sys_basher seems to now...
Heyall. For curiosity value, I'm trying to write a 3D-engine that uses only ASCII-graphics. No real reason, just for fun. The only problem is, I can't find a way to instantly "paste" blocks or...
: : : Where can i find some good documentantion about protected mode,how do i initialize it how I use it etc ...
: : : 10x
:
: It depend what environment, you start from, if you start in window...
: : Where can i find some good documentantion about protected mode,how do i initialize it how I use it etc ...
: : 10x
It depend what environment, you start from, if you start in window or linux...
: : Would this be possible?
: :
: : long long timer;
: :
: : asm
: : {
: : rdtsc
: : mov dword ptr timer, eax
: : mov dword ptr timer, edx
: : }
: :
:
: no, because...
I have been searching how to print a word in assembly Linux for quite some time. I cant manage to find good info though. Could anyone help me?
Thanks in advance.
It works.
: I am trying to reboot linux machine using assembly code.
:
: .section .data
: .section .text
: .globl _start
: _start:
:
: movl $88, %eax # System Call 88 is...
I am trying to reboot linux machine using assembly code.
.section .data
.section .text
.globl _start
_start:
movl $88, %eax # System Call 88 is for reboot.
movl $0xfee1dead,...
: : How is a modem drive done? Which are programming languages used for doing a modem driver? Which programming languages I need to know?
: : Thank you for helping.
: :
: :
:
: device drivers...
This message was edited by evolutions at 2003-12-11 16:12:51
This message was edited by evolutions at 2003-12-11 15:59:13
info this is using the 386 intel architecture(i think att lanuge set)...
for inline asm
:
: and also see the http://linuxassembly.org/ for more detailed information.
:
:
one way to do it keeping the intel syntax is moving all the assembly code in a separate...
for inline asm
and also see the http://linuxassembly.org/ for more detailed information.
: ./exp arg1 arg2
:
: in DOS the line afther the program ("arg1 arg2")is put in es: as a length string ,
: how i do this in linux ???
:
:
I'm not really sure. However, you can get...