목록전체 글 (16)
Kim Junghyun
http://www.felixbruns.de/iPod/firmware/
: 윈도우용 vi editor _vimrc 설정 "배경색 설정 colorscheme desert "폰트종류, 크기, 기울임꼴 설정 set gfn=Bitstream_Vera_Sans_Mono:h9:i "가로 세로 창 크기 설정 set lines=70 set co=130 "줄 번호 설정 set nu "백업 파일 저장 안함 set nobackup
http://doc.kldp.org/KoreanDoc//html/gcc_and_make/gcc_and_make.html#toc2
What Is Cygwin? Cygwin is a Linux-like environment for Windows. - cygwin 다운로드 http://www.cygwin.com/setup.exe - vi 설치 Editers Category vim: Vi IMproved - enhanced vi editor - gcc 설치 Devel Category gcc-core: C Compiler
MIPS (Million Instruction Per Second) -> CPU가 초당 처리할수 있는 명령어 갯수 Hz -> CPU 동작 속도 (초당 Clock) Hz 와 MIPS는 단순 비교는 안됨.(명령어 처리속도 Vs Clock 속도) 같은 clock 속도를 가진 CPU라 해도 명령어 처리 속도가 다를수 있음(ex. 파이프 라인)
구 분 속 도 IDE 133 Mbp SATAⅠ SATAⅡ 150 Mbps 300 Mbps USB 1.1 USB 2.0 USB 3.0 1.5 ~ 12 Mbps 480 Mbps 5 Gbps IEEE 1394 IEEE 1394b 400 Mbps 3.2 Gbps
구 분 자료형 범 위 바이트 문자형 char unsigned char -128 ~ 127 0 ~ 255 1 1 정수형 short int long unsigned short unsigned int unsigned long -32768 ~ 32767 -2147483648 ~ 2147483647 -2147483648 ~ 2147483647 0 ~ 65535 0 ~ 4294967295 0 ~ 4294967295 2 4 4 2 4 4 실수형 float double 3.4E-37 ~ 3.4E38 1.7E10-307 ~ 1.7E308 4 8
Algorithm for generating the checksum digit : 1) Format the smart card number as a decimal number, mormally unsing 11 digits. 2) Starting with the least significant digit, multiply every 2nd digit by 2. 3) Res = Add all individual digits in the result. 4) Check digit = (10 - (Res MOD 10)) MOD 10. example : 1. smart card number = 001 4277 3428 2. (2*0)+0+(2*1) + 4+(2*2)+7+(2*7) + 3+(2*4)+2+(2*8) ..