Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
一个字节有 8 位。它可以在另一个系统中更大吗?举个例子。
此外,汇编语言中有多少种不同类型的调用,例如 writeint、writedec、writestring、writechar。谢谢。
不再。是的,曾经有一段时间没有基本的 8 位字节的系统。
汇编语言中有多少种不同类型的调用,例如 writeint、writedec、writestring、writechar
这个问题没有意义。汇编语言只是一种编写直接转换为机器指令的代码的方法。call只是这些指令之一 - 它跳转到代码的其他部分,目的是返回到进行调用的地方。
call
您所指的东西听起来更像是库例程 - 在这种情况下,它们有任意数量,具体取决于编程环境。