Skip to content

Simple CRUD database written in Assembly x86-64 (Linux, System V AMD64 ABI)

License

Notifications You must be signed in to change notification settings

GNUWeeb/simple-crud-gw-membership

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple CRUD GNU/Weeb Membership

This is a simple CRUD (Create, Read, Update, Delete) program written in Assembly x86-64, specifically for Linux with System V AMD64 ABI calling convention. It's still under development.

screenshot.jpg

Setup

sudo apt-get install gcc make -y;
git clone https://github.com/GNUWeeb/simple-crud-gw-membership;
cd simple-crud-gw-membership;
make;

# Run the program
./main;

Data Structure

In this program, we use the following struct layout to store the record.

struct member {
	char	name[64];		// Name
	char	tg_username[32];	// Telegram username
	char	gender;			// m (male), f (female), h (hidden)
};

Maintainer

Contribute

We welcome pull request on the GitHub repository https://github.com/GNUWeeb/simple-crud-gw-membership

Reach us on our Telegram group https://t.me/GNUWeeb.

License

This software is licensed under the GNU GPL-2.0

About

Simple CRUD database written in Assembly x86-64 (Linux, System V AMD64 ABI)

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published