Assembly Pages:
feed me
Assembly - Recent Bookmarks - Page 1:
NO EXECUTE! September 3, 2008
fantastic info on doing fast emulators and/or interpreters! Check out the previous entry links at the bottom of the page.
http://www.emulators.com/docs/nx25_nostradamus.htm
Tags: interpreter, optimization, emulation, programming, assembly, howto, compiler, compilers, emulator, fast Saved by: admin at 29 May 2011
fantastic info on doing fast emulators and/or interpreters! Check out the previous entry links at the bottom of the page.
http://www.emulators.com/docs/nx25_nostradamus.htm
Tags: interpreter, optimization, emulation, programming, assembly, howto, compiler, compilers, emulator, fast Saved by: admin at 29 May 2011
game development - How do emulators work and how are they written? - Stack Overflow
Emulation works by handling the behavior of the processor and the individual components. You build each individual piece of the system and then connect the pieces much like wires do in hardware.
http://stackoverflow.com/questions/448673/how-do-emulators-work-and-how-are-they-written/448689#448689
Tags: programming, emulation, assembly, development, emulator, games, emulators, stackoverflow, implementation, interesting Saved by: admin at 20 Jan 2011
Emulation works by handling the behavior of the processor and the individual components. You build each individual piece of the system and then connect the pieces much like wires do in hardware.
http://stackoverflow.com/questions/448673/how-do-emulators-work-and-how-are-they-written/448689#448689
Tags: programming, emulation, assembly, development, emulator, games, emulators, stackoverflow, implementation, interesting Saved by: admin at 20 Jan 2011
How to write a simple operating system in assembly language
This document shows you how to write and build your first operating system in x86 assembly language. It explains what you need, the fundamentals of the PC boot process and assembly language, and how t... Read more
http://mikeos.berlios.de/write-your-own-os.html
Tags: programming, os, assembly, tutorial, kernel, asm, development, hacking, dev, howto Saved by: admin at 14 Jan 2011
This document shows you how to write and build your first operating system in x86 assembly language. It explains what you need, the fundamentals of the PC boot process and assembly language, and how t... Read more
http://mikeos.berlios.de/write-your-own-os.html
Tags: programming, os, assembly, tutorial, kernel, asm, development, hacking, dev, howto Saved by: admin at 14 Jan 2011
Zinc - Home
Introduction to Zinc Zinc is a low level language between assembler, C and C++ with a syntax somewhat similar to Ruby. Main FeaturesLow levelIdentifiers can have blanksIteratorsReduces the need of exp... Read more
http://tibleiz.net/zinc/
Tags: programming, language, ruby, zinc, c, assembler, assembly, c++, development, low-level Saved by: admin at 23 Dec 2010
Introduction to Zinc Zinc is a low level language between assembler, C and C++ with a syntax somewhat similar to Ruby. Main FeaturesLow levelIdentifiers can have blanksIteratorsReduces the need of exp... Read more
http://tibleiz.net/zinc/
Tags: programming, language, ruby, zinc, c, assembler, assembly, c++, development, low-level Saved by: admin at 23 Dec 2010
Open Security Training - Security and Hacking Tools
We started SecurityTube.net in mid 2008 to serve as a place for sharing knowledge in computer and network security topics. The below videos created by our team over the last 2 years is the first step ... Read more
http://tools.securitytube.net/index.php?title=Open_Security_Training
Tags: security, assembly, programming, video, tutorial, hacking, development, videos, learning, linux Saved by: admin at 20 Nov 2010
We started SecurityTube.net in mid 2008 to serve as a place for sharing knowledge in computer and network security topics. The below videos created by our team over the last 2 years is the first step ... Read more
http://tools.securitytube.net/index.php?title=Open_Security_Training
Tags: security, assembly, programming, video, tutorial, hacking, development, videos, learning, linux Saved by: admin at 20 Nov 2010
AsmXml - A Fast XML Parser
AsmXml is a very fast XML parser and decoder for x86 platforms (Windows, Linux, BSD and Mac OS X). It achieves high speed by using the following features: * Written in pure assembler * Optimi... Read more
http://tibleiz.net/asm-xml/index.html
Tags: xml, parser, assembly, programming, library, asm, speed, x86, performance, 2tag Saved by: admin at 09 Oct 2010
AsmXml is a very fast XML parser and decoder for x86 platforms (Windows, Linux, BSD and Mac OS X). It achieves high speed by using the following features: * Written in pure assembler * Optimi... Read more
http://tibleiz.net/asm-xml/index.html
Tags: xml, parser, assembly, programming, library, asm, speed, x86, performance, 2tag Saved by: admin at 09 Oct 2010
Beginner's Guide to Linkers
This article is intended to help C & C++ programmers understand the essentials of what the linker does. I've explained this to a number of colleagues over the years, so I decided it was time to write ... Read more
http://www.lurklurk.org/linkers/linkers.html
Tags: programming, linker, c++, c, compiler, compilers, assembly, code, tutorial, gcc Saved by: admin at 23 Aug 2010
This article is intended to help C & C++ programmers understand the essentials of what the linker does. I've explained this to a number of colleagues over the years, so I decided it was time to write ... Read more
http://www.lurklurk.org/linkers/linkers.html
Tags: programming, linker, c++, c, compiler, compilers, assembly, code, tutorial, gcc Saved by: admin at 23 Aug 2010
lbrandy.com » Blog Archive » You can’t beat a good compiler… right?
As an aside, I have a question: how exactly does one go about learning how to go beyond standard C into hardcore optimization? For me, it’s been a long road of trial & error, and random discovery. I... Read more
http://lbrandy.com/blog/2010/06/you-cant-beat-a-good-compile
Tags: c, optimization, programming, c++, compiler, assembly, gcc, compilers, memory, optimisation Saved by: admin at 08 Jun 2010
As an aside, I have a question: how exactly does one go about learning how to go beyond standard C into hardcore optimization? For me, it’s been a long road of trial & error, and random discovery. I... Read more
http://lbrandy.com/blog/2010/06/you-cant-beat-a-good-compile
Tags: c, optimization, programming, c++, compiler, assembly, gcc, compilers, memory, optimisation Saved by: admin at 08 Jun 2010
How do emulators work and how are they written? - Stack Overflow
Emulation is a multi-faceted area. Here are the basic ideas and functional components. I'm going to break it into pieces and then fill in the details via edits. Many of the things I'm going to describ... Read more
http://stackoverflow.com/questions/448673/how-do-emulators-work-and-how-are-they-written
Tags: programming, emulation, emulator, development, stackoverflow, assembly, reference, gamedev, cpu, hardware Saved by: admin at 16 May 2010
Emulation is a multi-faceted area. Here are the basic ideas and functional components. I'm going to break it into pieces and then fill in the details via edits. Many of the things I'm going to describ... Read more
http://stackoverflow.com/questions/448673/how-do-emulators-work-and-how-are-they-written
Tags: programming, emulation, emulator, development, stackoverflow, assembly, reference, gamedev, cpu, hardware Saved by: admin at 16 May 2010
Ksplice » Hello from a libc-free world! (Part 1) - System administration and software
As an exercise, I want to write a Hello World program in C simple enough that I can disassemble it and be able to explain all of the assembly to myself. This adventure assumes compilation and executio... Read more
http://blog.ksplice.com/2010/03/libc-free-world/
Tags: assembly, programming, c, linux, compiler, code, asm, linking, x86, c/c++ Saved by: admin at 17 Mar 2010
As an exercise, I want to write a Hello World program in C simple enough that I can disassemble it and be able to explain all of the assembly to myself. This adventure assumes compilation and executio... Read more
http://blog.ksplice.com/2010/03/libc-free-world/
Tags: assembly, programming, c, linux, compiler, code, asm, linking, x86, c/c++ Saved by: admin at 17 Mar 2010