Files
blog_os/blog/templates/edition-1/handling-exceptions-with-naked-fns.html
2020-12-16 14:38:59 +01:00

12 lines
625 B
HTML

{% extends "edition-1/section.html" %}
{% block title %}{{ super() }}{% endblock title %}
{% block main %}{{ super() }}{% endblock main %}
{% block introduction %}
<p>These posts explain how to handle CPU exceptions using naked functions. Historically, these posts were the main exception handling posts before the <code>x86-interrupt</code> calling convention and the <code>x86_64</code> crate existed. Our new way of handling exceptions can be found in the <a href="{{ get_url(path="@/edition-1/posts/09-handling-exceptions/index.md") | safe }}">“Handling Exceptions”</a> post.</p>
{% endblock introduction %}