{"id":29715035,"url":"https://github.com/bbangjee/cse3030_introduction_to_computer_systems","last_synced_at":"2026-05-19T09:04:03.901Z","repository":{"id":303345976,"uuid":"1015157449","full_name":"bbangjee/cse3030_introduction_to_computer_systems","owner":"bbangjee","description":"From Bit Manipulation to Cache Simulation - Sogang University Computer System Projects","archived":false,"fork":false,"pushed_at":"2025-07-07T05:44:00.000Z","size":209,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-07T06:25:33.125Z","etag":null,"topics":["assembly-language","bit-manipulation","cache-simulation","computer-systems","gdb","lru-cache","reverse-engineering","sogang-university","x86-64"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bbangjee.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-07-07T05:04:54.000Z","updated_at":"2025-07-07T05:52:11.000Z","dependencies_parsed_at":"2025-07-07T06:26:08.969Z","dependency_job_id":"3c031d71-631d-4fdd-aa85-1d493ebb57a0","html_url":"https://github.com/bbangjee/cse3030_introduction_to_computer_systems","commit_stats":null,"previous_names":["bbangjee/cse3030_introduction_to_computer_systems"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bbangjee/cse3030_introduction_to_computer_systems","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bbangjee%2Fcse3030_introduction_to_computer_systems","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bbangjee%2Fcse3030_introduction_to_computer_systems/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bbangjee%2Fcse3030_introduction_to_computer_systems/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bbangjee%2Fcse3030_introduction_to_computer_systems/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bbangjee","download_url":"https://codeload.github.com/bbangjee/cse3030_introduction_to_computer_systems/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bbangjee%2Fcse3030_introduction_to_computer_systems/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266796291,"owners_count":23985470,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-24T02:00:09.469Z","response_time":99,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["assembly-language","bit-manipulation","cache-simulation","computer-systems","gdb","lru-cache","reverse-engineering","sogang-university","x86-64"],"created_at":"2025-07-24T05:01:05.254Z","updated_at":"2026-05-19T09:03:58.855Z","avatar_url":"https://github.com/bbangjee.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CSE3030 - Introduction to Computer System Labs\n\n서강대학교 컴퓨터공학과 CSE3030 컴퓨터시스템개론 실습 과제 모음입니다.\n\n## 📚 Labs Overview\n\n### Lab #1: Bit Lab\n- **목적**: 비트 레벨 연산을 이용한 퍼즐 해결\n- **주요 내용**: \n  - `bitMask(x)`: 32-x개의 0과 x개의 1로 구성된 마스크 생성\n  - `absVal(x)`: 절댓값 계산 (조건문 없이)\n  - `conditional(x, y, z)`: 삼항 연산자 구현 (조건문 없이)\n- **제약사항**: `! ~ \u0026 ^ | + \u003c\u003c \u003e\u003e` 연산자만 사용, 제어문 금지\n\n### Lab #2: Reversing Lab\n- **목적**: 어셈블리 코드 분석을 통한 역공학\n- **주요 내용**: \n  - x86-64 어셈블리 코드 분석\n  - GDB 디버거 사용법 학습\n  - 프로그램의 입력 조건 역추적\n- **도구**: GDB, Python 스크립트\n\n### Lab #3: Cache Lab\n- **목적**: 캐시 메모리 시뮬레이터 구현\n- **주요 내용**:\n  - **3-1**: 단일 레벨 캐시 시뮬레이터\n  - **3-2**: 다중 레벨 캐시 시뮬레이터\n- **핵심 개념**: LRU 교체 정책, 캐시 히트/미스 판정\n\n## 🏗️ Project Structure\n\n```\n├── Lab01/\n│   ├── 1-1/\n│   │   └── bitMask.c          \n│   ├── 1-2/\n│   │   └── absVal.c           \n│   └── 1-3/\n│       └── conditional.c      \n├── Lab02/\n|   ├── report.pdf\n│   ├── 2-1/\n│   │   ├── problem1.c         \n│   │   ├── problem1.bin       \n│   │   └── solve1.py          \n│   ├── 2-2/\n│   │   ├── problem2.c\n│   │   ├── problem2.bin       \n│   │   └── solve2.py          \n│   ├── 2-3/\n│   │   ├── problem3.c\n│   │   ├── problem3.bin       \n│   │   └── solve3.py          \n│   └── 2-4/\n│       ├── problem4.c\n│       ├── problem4.bin       \n│       └── solve4.py          \n└── Lab03/\n    ├── 3-1/                   # Single-level Cache\n    │   ├── single_cache.c\n    │   ├── single_cache.h     \n    │   └── types.h\n    └── 3-2/                   # Multi-level Cache\n        ├── multi_cache.c\n        ├── multi_cache.h      \n        ├── single_cache.c     \n        ├── single_cache.h\n        └── types.h\n```\n\n## 🛠️ Development Environment\n\n- **언어**: C\n- **컴파일러**: GCC\n- **플랫폼**: Linux (cspro.sogang.ac.kr)\n- **빌드 도구**: Make\n\n## 🎯 학습 목표\n\n1. **시스템 레벨 프로그래밍** 이해\n2. **비트 연산과 어셈블리** 숙련도 향상  \n3. **디버깅 도구 활용** 능력 배양\n4. **캐시 메모리 시스템** 동작 원리 이해\n5. **역공학 기법** 습득\n\n---\n\n**Course**: CSE3030 Introduction to Computer System  \n**Instructor**: Prof. Jaeseung Choi  \n**Institution**: Sogang University, Dept. of Computer Science and Engineering\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbbangjee%2Fcse3030_introduction_to_computer_systems","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbbangjee%2Fcse3030_introduction_to_computer_systems","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbbangjee%2Fcse3030_introduction_to_computer_systems/lists"}