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
~775 People Reached
About Me

Skateboards, Web/Computer Development

Interests
Skateboarding assembling my own code.
Favorite Tags
Member Avatar for kevincarroll

Just a quick question, for educational and self debugging purposes, I was wondering if it was possible to read entries from the Global Descriptor Table, for example: [code] GDT db 00,00 GDTaddr db 00,00,00,00 sgdt GDT sub dword ptr[GDTaddr],18 ;2nd Entry mov edi,dword ptr[GDTaddr] mov esi,offset entry mov ecx,8h ;entry …

Member Avatar for mathematician
0
202
Member Avatar for kevincarroll

I've been having trouble, figuring out if it is possible to keep a browsers autocomplete, for elements like input etc., but just changing the style. For example, In some browsers the autocomplete will fill out the rest of the "suggested" text, and It will be highlighted, is there a way …

0
49
Member Avatar for xellos

whats wrong with my code? .model small .stack .data buffer db 10,?, 10 dup(' ') .code main proc mov dx, offset buffer mov ah, 0ah int 21h xor bx,bx mov bl, buffer[1] mov buffer[bx+2], '$' mov dx, offset buffer + 2 mov ah,09 int 21h ret mov ah,4ch int 21h …

Member Avatar for NotNull
0
524