发信人: yangcs() 
整理人: yangcs(2000-01-21 14:33:37), 站内信件
 | 
 
 
# include <dos.h>
 main(n,c)
 int n;char *c[];
 {
 if(n!=2)
    exit(1);
 keybuf(c[1][0],0);
 }
 
 keybuf(char k1,char k2)
 {
 int keybufbott;
 keybufbott=peekb(0,0x41c);
 if(keybufbott<0x3c)
    pokeb(0,0x41c,keybufbott+2);
 else
    pokeb(0,0x41c,0x1e);
 pokeb(0,0x400+keybufbott,k2);
 pokeb(0,0x400+keybufbott,k1);
 }
  -- ※ 来源:.月光软件站 http://www.moon-soft.com.[FROM: 210.72.45.207]
  | 
 
 
 |