!C99Shell v. 1.0 pre-release build #13!

Software: Apache/2.0.54 (Unix) mod_perl/1.99_09 Perl/v5.8.0 mod_ssl/2.0.54 OpenSSL/0.9.7l DAV/2 FrontPage/5.0.2.2635 PHP/4.4.0 mod_gzip/2.0.26.1a 

uname -a: Linux snow.he.net 4.4.276-v2-mono-1 #1 SMP Wed Jul 21 11:21:17 PDT 2021 i686 

uid=99(nobody) gid=98(nobody) groups=98(nobody) 

Safe-mode: OFF (not secure)

/usr/src/linux-2.4.18-xfs-1.1/arch/alpha/kernel/   drwxr-xr-x
Free 318.37 GB of 458.09 GB (69.5%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     es1888.c (1.29 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
/*
 *    linux/arch/alpha/kernel/es1888.c
 *
 * Init the built-in ES1888 sound chip (SB16 compatible)
 */

#include <linux/init.h>
#include <asm/io.h>
#include "proto.h"

void __init
es1888_init(void)
{
    /* Sequence of IO reads to init the audio controller */
    inb(0x0229);
    inb(0x0229);
    inb(0x0229);
    inb(0x022b);
    inb(0x0229);
    inb(0x022b);
    inb(0x0229);
    inb(0x0229);
    inb(0x022b);
    inb(0x0229);
    inb(0x0220); /* This sets the base address to 0x220 */

    /* Sequence to set DMA channels */
    outb(0x01, 0x0226);        /* reset */
    inb(0x0226);            /* pause */
    outb(0x00, 0x0226);        /* release reset */
    while (!(inb(0x022e) & 0x80))    /* wait for bit 7 to assert*/
        continue;
    inb(0x022a);            /* pause */
    outb(0xc6, 0x022c);        /* enable extended mode */
    inb(0x022a);            /* pause, also forces the write */
    while (inb(0x022c) & 0x80)    /* wait for bit 7 to deassert */
        continue;
    outb(0xb1, 0x022c);        /* setup for write to Interrupt CR */
    while (inb(0x022c) & 0x80)    /* wait for bit 7 to deassert */
        continue;
    outb(0x14, 0x022c);        /* set IRQ 5 */
    while (inb(0x022c) & 0x80)    /* wait for bit 7 to deassert */
        continue;
    outb(0xb2, 0x022c);        /* setup for write to DMA CR */
    while (inb(0x022c) & 0x80)    /* wait for bit 7 to deassert */
        continue;
    outb(0x18, 0x022c);        /* set DMA channel 1 */
    inb(0x022c);            /* force the write */
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #13 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0219 ]--