Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~4K People Reached
Favorite Forums
Favorite Tags

6 Posted Topics

Member Avatar for Rileyh

if you want to actually understand how assembly works, you shouldn't use all those pre-defined macros! there isn't one single CPU instruction in all of the code you pasted. understanding assembly means understanding the instructions and what they do. and in the future please just use the CODE tags instead …

Member Avatar for AceStryker
0
163
Member Avatar for inagumi

no reason to restrict yourself to looking for TASM source code, it's all the same minus some syntax differences. in any case you must have not looked very hard, just doing a google search for "tasm multiplication" turns up tons of relevant results. what have you tried so far in …

Member Avatar for inagumi
0
295
Member Avatar for Labdabeta

in addition to simply knowing what opcodes translate to what values, it is essential that you understand the so-called mode/reg/RM byte. there are quite a few addressing modes understood by the 8086 CPU. this byte is placed directly after the opcode byte if the opcode requires operand(s) that aren't immediate. …

Member Avatar for miker00lz
0
1K
Member Avatar for Zssffssz

as schoil pointed out, it sounds like you're not really clear on exactly how disk access works. there isn't some special CPU instruction that magically creates A:\ or anything like that. the easiest way to go about actually reading data off the disk is to use the BIOS routines for …

Member Avatar for miker00lz
0
160
Member Avatar for miker00lz

let me preface this by explaining the reason i'm writing this code.. i've been writing an x86 PC emulator in FreeBASIC, and this program is designed to test it's handling of video mode 13h, including palette manipulation. i thought in addition to being fun (at least for a nerd like …

Member Avatar for miker00lz
0
1K
Member Avatar for Jononomous

in addition to that, you also have to have routines in between each byte you send that polls the serial controller's status port to know when the other system has received the data, and it's safe to send the next byte. if you neglect to do this, the data coming …

Member Avatar for miker00lz
0
832

The End.