CS(6)
-
[System software] (5) Operating system
Access provided to a user: batch processing sys: 순차적으로 처리 time-sharing sys: 동시간에 여러 개 처리 real-time sys: 정의한 시간 안에 프로세스 완료 Run-time environment virtual machine/ 확장 머신 : 하드웨어 이름만 알고 있으면 불러서 쓸 수 있다. 멀티프로그래밍: 일정 시간: 여러개 일이 잘라서 처리 - > resource 관리해줘야 함 Machine-dependent os features OS 특징 ( 전체적으로 resource 관리) interrupt processing process scheduling i/o supervision management of real memory mag of virtu..
2023.12.24 -
[System software] (4) Macro processor
The most common used of macro processor is in assembler language programming. Besides: high-level programming lang, general-purpose processor( not tied to any lang) Macro function Commonly used group of instructions Definition: macro-name arguments body MEND Call: macro-name actual-parameters Expanding: by macro processor Macro processor Replace each macro instruction with the corresponding grou..
2023.12.11 -
리눅스에서 c언어 컴파일하기
'nano' text editor 사용한다: 이 명령어는 program2.c라는 파일을 nano 에디터로 열어서 편집할 수 있도록 한다. c코드 작성: 저장 및 종료: Ctrl+X 컴파일 및 실행 - gcc 설치: sudo apt-get install gcc - 컴파일: gcc(컴파일할파일명) -o (컴파일후만들어질파일명:원하 는 이름) gcc program2.c -o program2 -프로그램 실행:
2023.12.07 -
[System software] (2) Assembler
Basic assembler functions Assembler assembly program →machine program+ link/load information link: 여러 목적코드를 하나로 load: 목적코드를 메모리에 올릴 때. Assembly languages source program → assembler → object program → linker/loader 2 pass algorithm: pass1: symbol table 만들기 pass2: generate machine code 필요한 자료구조: SYMTAB[] : {(symbol, value,flag)} . OPTAB[]: {Mnemonic, code,length)}. LOCCTR[] : Location counter: 현재 ..
2023.11.01 -
[System software] (1) Overview & SIC
교재: System Software: An Introduction to Systems Programming( Leland L.Beck ) ------수업 내용 정리----- System classes : Compilers, Operating Systems, Networks, Computer Architecture, Embedded Systems,… Big endian 낮은 값부터 시작 각각 devices 따라 big endian/little endian 쓴다 MSB ( Most Significant Bit) → LSB( high memory) Little endian 크 값부터 시작 ** big endian, little endian 서로 바뀌줌 ** 보통: 주로 big endian 씀 Computer ..
2023.10.19 -
SQL (Udemy)
--PostgreSQL-- Databases is a resquest to batabase to fetch the information systems that allows user to store and organize data Spreadsheets vs Databases Platform options PostgreSQL, MySQL,MariaSQL, Microsoft Access,.. SELECT SELECT column_name FROM table_name DISTINCT SELECT DISTINCT column_name FROM table_name COUNT SELECT COUNT (DISTINCT(district)) FROM address SELECT WHERE SELECT column1, co..
2023.10.14