컴퓨터
-
공용체로 레지스트 표현;;컴퓨터/C/C++ 2006. 3. 24. 22:18
#include struct hregs{ char al; char ah; }; union regs{ struct hregs h; int ax; }; int main() { union regs reg; reg.h.ah = 0x1A; reg.h.al = 0x2B; printf("ah:%X\n", reg.h.ah); printf("al:%X\n", reg.h.al); printf("ax:%hX\n", reg.ax); return 0; } Microsoft C에 있어서의 레지스터 표현 /* word registers */ struct WORDREGS { unsigned int ax; unsigned int bx; unsigned int cx; unsigned int dx; unsigned int si; unsi..
-
-
X 설치 in x-note 3ta-2컴퓨터/*nix 2006. 3. 24. 22:12
젠투 설치 하고 Gnome을 설치. 링크만 모았군 -_ -;; HOWTO Gnome for End-user http://gentoo-wiki.com/HOWTO_Gnome_Desktop_for_the_End-User HOWTO gnome-volume-manager http://gentoo-wiki.com/HOWTO_gnome-volume-manager HOWTO ATI drivers - need to kernel config http://gentoo-wiki.com/HOWTO_ATI_Drivers HOWTO Xorg http://gentoo-wiki.com/HOWTO_Xorg /opt/ati/bin/fglrxconfig http://kin.naver.com/db/detail.php?d1id=1&dir_id..
-
자주 잊어먹는 것들... 바보.컴퓨터/*nix 2006. 3. 24. 22:11
젠투 기준;; 텔넷 접속시 보여지는 메시지 /etc/issue.net /etc/issue.logo Message Of The Day /etc/moth Mysql 계정 생성 및 삭제 mysql> grant all on DB.* to USER@localhost identified by 'ppp373' with grant option; mysql> revoke all on DB.* from USER@localhost; vimrc keymap map v]}zf map zo nnoremap :Tlist nnoremap :TlistUpdate map [i map :! gcc % -o %