摘要: https://www.zhihu.com/question/63375062/answer/3158720655 阅读全文
posted @ 2024-03-04 23:54 Pril 阅读(45) 评论(0) 推荐(0)
摘要: 引用了以下文章中的文字或图片,删除请联系我 https://github.com/Babtsov/jos/blob/master/lab2/README.md https://zhuanlan.zhihu.com/p/165104094 背景知识 通过实验1,我们知道系统的启动流程: 系统启动自动执 阅读全文
posted @ 2024-03-03 00:48 Pril 阅读(26) 评论(0) 推荐(0)
摘要: kern/Makefrag # # Makefile fragment for JOS kernel. # This is NOT a complete makefile; # you must run GNU make in the top-level directory # where the 阅读全文
posted @ 2024-01-15 09:33 Pril 阅读(33) 评论(0) 推荐(0)
摘要: boot/Makefrag # # Makefile fragment for the JOS kernel. # This is NOT a complete makefile; # you must run GNU make in the top-level directory # where 阅读全文
posted @ 2024-01-15 09:32 Pril 阅读(25) 评论(0) 推荐(0)
摘要: make qemu 当我们执行make qemu的时候,实际上是在执行GNUMakefile中的 qemu: $(IMAGES) pre-qemu $(QEMU) $(QEMUOPTS) #上面第一行冒号前面的部分,叫做"目标"(target),冒号后面的部分叫做"前置条件"(prerequisit 阅读全文
posted @ 2024-01-14 16:12 Pril 阅读(125) 评论(0) 推荐(0)
摘要: GNUMakefile # # This makefile system follows the structuring conventions # recommended by Peter Miller in his excellent paper: # # Recursive Make Cons 阅读全文
posted @ 2024-01-09 11:06 Pril 阅读(63) 评论(0) 推荐(0)
摘要: /* GCC编译需要mpfr和mpc(-->gmp、-->mpfr)库的支持 GCC编译工具链: GCC编译工具链(toolchain),是指以GCC编译器为核心的一整套工具。它主要包含以下三部分内容: gcc-core:即GCC编译器,用于完成预处理和编译过程,把C代码转换成汇编代码。 Binut 阅读全文
posted @ 2024-01-06 09:00 Pril 阅读(94) 评论(0) 推荐(0)
摘要: #Classes and Objects ##More on Classes 本结主要讲: Return在方法中的使用 This 关键字 类成员和实例成员 访问控制(类成员) ###Returning a Value from a Method 方法在调用时遇到以下的情况会返回到调用它的代码: 执行 阅读全文
posted @ 2022-05-25 15:18 Pril 阅读(36) 评论(0) 推荐(0)
摘要: https://docs.oracle.com/javaee/7/tutorial/index.html #17 Java Servlet Technology #17.1 What Is a Servlet? servlet是Java编程语言中一个工具类,它被用来扩展服务器的性能,服务器上驻留着可 阅读全文
posted @ 2022-05-25 09:06 Pril 阅读(23) 评论(0) 推荐(0)
摘要: https://docs.oracle.com/javase/tutorial/java/javaOO/objects.html #Classes and Objects ##Object 典型的Java程序创建许多对象,如您所知,这些对象通过调用方法进行交互。通过这些对象交互,程序可以执行各种任务 阅读全文
posted @ 2022-05-20 16:26 Pril 阅读(32) 评论(0) 推荐(0)