diff options
author | Benji Dial <benji6283@gmail.com> | 2021-03-04 19:11:42 -0500 |
---|---|---|
committer | Benji Dial <benji6283@gmail.com> | 2021-03-04 19:11:42 -0500 |
commit | 406af09ade55553e2b064506c3ba3c89bd965d73 (patch) | |
tree | dd6da93bc329d6b1097aa1afcde2af19491dfc8e /src/user/runtimes/cxx/extra.asm | |
parent | 86af7f631080bc4b45846bd7f382c4cedcbec2b4 (diff) | |
download | portland-os-406af09ade55553e2b064506c3ba3c89bd965d73.tar.gz |
start of a c++ widget toolkit, c++ runtime
Diffstat (limited to 'src/user/runtimes/cxx/extra.asm')
-rw-r--r-- | src/user/runtimes/cxx/extra.asm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/user/runtimes/cxx/extra.asm b/src/user/runtimes/cxx/extra.asm new file mode 100644 index 0000000..78bb0a8 --- /dev/null +++ b/src/user/runtimes/cxx/extra.asm @@ -0,0 +1,7 @@ +bits 32 + +global __cxa_pure_virtual + +section .text +__cxa_pure_virtual: + ret
\ No newline at end of file |