Counter Strike: Global Offense beta code

void Init_IDT(void)
{
extern void ISR_PIC1(void) __asm("ISR_PIC1") ;
extern void ISR_PIC2(void) __asm("ISR_PIC2") ;
IDT_DESCRIPTOR *p ;
int i ;
p = idt ;
for (i = 0; i < ENTRIES(idt); i++, p++)
{
ISR isr ; p->selector = code_selector ;
p->not_used = 0x00 ;
p->flags = 0x8E ;
if (INTEL_INT(i)) isr = _intel_isr ;
else if (PIC1_INT(i)) isr = ISR_PIC1 ;
else if (PIC2_INT(i)) isr = ISR_PIC2 ;
else isr = ISR_User ;
p->offset_0 = ((WORD16 *) &isr)[0] ;
p->offset_16 = ((WORD16 *) &isr)[1] ;
} __asm__ __volatile__ ("lidt %0" : : "m" (idt_info)) ;
}
 
Thanks for the opportunity, btw.....

did you know that "on June 19, 1999 "Counter-Strike" beta 1 was available for free download off the Planet Half-Life website. At this time, nobody could have known how popular the game would become."

fast forward 13 years and we have the Counter Strike Global Offensive beta :D
 
Dammit. I can't think of anything smartass.

So, how about my reaction if I were to get the code?

funny-pictures-cat-is-excited-about-ribbons.jpg
 
bread's done
Back
Top