Codebase list invaders / debian/1.0.0-13 sound.c
debian/1.0.0-13

Tree @debian/1.0.0-13 (Download .tar.gz)

sound.c @debian/1.0.0-13raw · history · blame

#include "sound.h"

#include "io.h"

void sound_freq (uint32 freq)
{
  uint16 z = (uint16) ( ((uint32)(1193180)) / freq );

  outb(182,0x43);
  outb(z&255, 0x42);
  outb(z>>8, 0x42);
  outb(inb(0x61) | 3, 0x61);
};

void sound_nosound ()
{
  outb(inb(0x61) & ~3, 0x61);
};