Skip to content

Instantly share code, notes, and snippets.

View alex-bellon's full-sized avatar
🕴️

balex alex-bellon

🕴️
View GitHub Profile
@alex-bellon
alex-bellon / halucinator-68k-support.org
Last active August 26, 2022 23:17
Description of work done so far to add M68K support to HALucinator

HALucinator 68K Support

src/halucinator/hal_config.py

  • Added support to _init_ for different calling conventions

src/halucinator/main.py

  • Added M68K class from Avatar2 and M68KQemuTarget from qemu_targets in local repo
  • Added M68K as possible architecture to select, choose appropriate path

src/halucinator/qemu_targets/m68k_qemu.py

  • Created this file based on the other ARM targets

Keybase proof

I hereby claim:

  • I am alex-bellon on github.
  • I am alexbellon (https://keybase.io/alexbellon) on keybase.
  • I have a public key whose fingerprint is 29F2 B702 3CB5 87ED CF6A 33DD 69AC 0E7E 14DF B2D2

To claim this, I am signing this object:

@alex-bellon
alex-bellon / github-gitlab-remote.sh
Created July 25, 2019 03:48
Add a GitHub and GitLab repo as remote origins so that when you push, the changes are pushed to both repositiories. Useful for keeping a mirror of all your GitHub repos on GitLab. Does this for every directory in the present working directory.
for dir in */; do
repo=${dir%/*}
user="foo"
cd $dir
git remote remove origin
git remote add github git@github.com:$user/$repo.git
git remote add gitlab git@gitlab.com:$user/$repo.git
git remote add origin git@github.com:$user/$repo.git
git remote set-url --add --push origin git@github.com:$user/$repo.git
git remote set-url --add --push origin git@gitlab.com:$user/$repo.git